Image.fromJson constructor

Image.fromJson(
  1. Map json_
)

Implementation

Image.fromJson(core.Map json_)
  : this(
      gcsUri: json_['gcsUri'] as core.String?,
      rawBytes: json_['rawBytes'] as core.String?,
    );