GooglePrivacyDlpV2Table.fromJson constructor

GooglePrivacyDlpV2Table.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2Table.fromJson(core.Map json_)
    : this(
        headers: json_.containsKey('headers')
            ? (json_['headers'] as core.List)
                .map((value) => GooglePrivacyDlpV2FieldId.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        rows: json_.containsKey('rows')
            ? (json_['rows'] as core.List)
                .map((value) => GooglePrivacyDlpV2Row.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );