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