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