ListContent.fromJson constructor
ListContent.fromJson(
- Map json_
Implementation
ListContent.fromJson(core.Map json_)
: this(
listItems:
(json_['listItems'] as core.List?)
?.map(
(value) => ListItem.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);