NestedParameter.fromJson constructor
NestedParameter.fromJson(
- Map json_
Implementation
NestedParameter.fromJson(core.Map json_)
: this(
boolValue: json_['boolValue'] as core.bool?,
intValue: json_['intValue'] as core.String?,
multiBoolValue: (json_['multiBoolValue'] as core.List?)
?.map((value) => value as core.bool)
.toList(),
multiIntValue: (json_['multiIntValue'] as core.List?)
?.map((value) => value as core.String)
.toList(),
multiValue: (json_['multiValue'] as core.List?)
?.map((value) => value as core.String)
.toList(),
name: json_['name'] as core.String?,
value: json_['value'] as core.String?,
);