CloudDlpDataProfile.fromJson constructor

CloudDlpDataProfile.fromJson(
  1. Map json_
)

Implementation

CloudDlpDataProfile.fromJson(core.Map json_)
    : this(
        dataProfile: json_.containsKey('dataProfile')
            ? json_['dataProfile'] as core.String
            : null,
        parentType: json_.containsKey('parentType')
            ? json_['parentType'] as core.String
            : null,
      );