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