Image.fromJson constructor
Image.fromJson(
- Map json_
Implementation
Image.fromJson(core.Map json_)
: this(
imageUrl: json_.containsKey('imageUrl')
? json_['imageUrl'] as core.String
: null,
status: json_.containsKey('status')
? json_['status'] as core.String
: null,
type: json_.containsKey('type') ? json_['type'] as core.String : null,
);