GoogleCloudRecommendationengineV1beta1Image.fromJson constructor

GoogleCloudRecommendationengineV1beta1Image.fromJson(
  1. Map json_
)

Implementation

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