fromJson static method
Returns a new Component instance and imports its values from
value
if it's a Map, null otherwise.
Implementation
// ignore: prefer_constructors_over_static_methods
static Component fromJson(dynamic value) {
if (value is Map) {
final json = value.cast<String, dynamic>();
return Component(
children: Pointer.listFromJson(json[r'children']),
models: mapValueOfType<Map<String, dynamic>>(json, r'models'),
links: Links.mapFromJson(json[r'links']),
meta: ComponentMeta.fromJson(json[r'meta']),
id: mapValueOfType<String>(json, r'id'),
label: mapValueOfType<String>(json, r'label'),
name: mapValueOfType<String>(json, r'name'),
type: ElementTypeEnum.fromJson(json[r'type']),
);
}
throw Exception('value is not a map');
}