GoogleCloudDatacatalogV1ContactsPerson.fromJson constructor

GoogleCloudDatacatalogV1ContactsPerson.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDatacatalogV1ContactsPerson.fromJson(core.Map json_)
    : this(
        designation: json_.containsKey('designation')
            ? json_['designation'] as core.String
            : null,
        email:
            json_.containsKey('email') ? json_['email'] as core.String : null,
      );