AutoText.fromJson constructor
AutoText.fromJson(
- Map json_
Implementation
AutoText.fromJson(core.Map json_)
: this(
content: json_.containsKey('content')
? json_['content'] as core.String
: null,
style: json_.containsKey('style')
? TextStyle.fromJson(
json_['style'] as core.Map<core.String, core.dynamic>)
: null,
type: json_.containsKey('type') ? json_['type'] as core.String : null,
);