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