GoogleCloudAdvisorynotificationsV1Subject.fromJson constructor

GoogleCloudAdvisorynotificationsV1Subject.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAdvisorynotificationsV1Subject.fromJson(core.Map json_)
    : this(
        text: json_.containsKey('text')
            ? GoogleCloudAdvisorynotificationsV1Text.fromJson(
                json_['text'] as core.Map<core.String, core.dynamic>)
            : null,
      );