ResultImage.fromJson constructor

ResultImage.fromJson(
  1. Map json_
)

Implementation

ResultImage.fromJson(core.Map json_)
    : this(
        byteSize: json_['byteSize'] as core.int?,
        contextLink: json_['contextLink'] as core.String?,
        height: json_['height'] as core.int?,
        thumbnailHeight: json_['thumbnailHeight'] as core.int?,
        thumbnailLink: json_['thumbnailLink'] as core.String?,
        thumbnailWidth: json_['thumbnailWidth'] as core.int?,
        width: json_['width'] as core.int?,
      );