GooglePrivacyDlpV2BoundingBox.fromJson constructor

GooglePrivacyDlpV2BoundingBox.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2BoundingBox.fromJson(core.Map json_)
    : this(
        height:
            json_.containsKey('height') ? json_['height'] as core.int : null,
        left: json_.containsKey('left') ? json_['left'] as core.int : null,
        top: json_.containsKey('top') ? json_['top'] as core.int : null,
        width: json_.containsKey('width') ? json_['width'] as core.int : null,
      );