Image.fromJson constructor

Image.fromJson(
  1. Map json_
)

Implementation

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