TextList.fromJson constructor
TextList.fromJson(
- Map json_
Implementation
TextList.fromJson(core.Map json_)
: this(
values: json_.containsKey('values')
? (json_['values'] as core.List)
.map((value) => Text.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);