Image.fromJson constructor

Image.fromJson(
  1. Map json_
)

Implementation

Image.fromJson(core.Map json_)
    : this(
        height:
            json_.containsKey('height') ? json_['height'] as core.int : null,
        url: json_.containsKey('url') ? json_['url'] as core.String : null,
        width: json_.containsKey('width') ? json_['width'] as core.int : null,
      );