GooglePrivacyDlpV2Range.fromJson constructor

GooglePrivacyDlpV2Range.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2Range.fromJson(core.Map json_)
    : this(
        end: json_.containsKey('end') ? json_['end'] as core.String : null,
        start:
            json_.containsKey('start') ? json_['start'] as core.String : null,
      );