GoogleCloudAdvisorynotificationsV1Text.fromJson constructor

GoogleCloudAdvisorynotificationsV1Text.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAdvisorynotificationsV1Text.fromJson(core.Map json_)
    : this(
        enText: json_.containsKey('enText')
            ? json_['enText'] as core.String
            : null,
        localizationState: json_.containsKey('localizationState')
            ? json_['localizationState'] as core.String
            : null,
        localizedText: json_.containsKey('localizedText')
            ? json_['localizedText'] as core.String
            : null,
      );