GoogleCloudAdvisorynotificationsV1MessageBody.fromJson constructor

GoogleCloudAdvisorynotificationsV1MessageBody.fromJson(
  1. Map json_
)

Implementation

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