Image.fromJson constructor

Image.fromJson(
  1. Map json_
)

Implementation

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