$TextList.fromJson constructor
$TextList.fromJson(
- Map json_
Implementation
$TextList.fromJson(core.Map json_)
: this(
texts: (json_['texts'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);