CloudDlpDataProfile.fromJson constructor

CloudDlpDataProfile.fromJson(
  1. Map json_
)

Implementation

CloudDlpDataProfile.fromJson(core.Map json_)
  : this(
      dataProfile: json_['dataProfile'] as core.String?,
      infoTypes: (json_['infoTypes'] as core.List?)
          ?.map(
            (value) => InfoType.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      parentType: json_['parentType'] as core.String?,
    );