EnterText.deserialize constructor
Deserializes this command from the value generated by serialize.
Implementation
EnterText.deserialize(super.json, {String? path})
: text = json.containsKey('text')
? json['text']!
: throw ArgumentError.notNull(path == null ? 'text' : '$path.text'),
super.deserialize();