ListNotificationConfigsResponse.fromJson constructor

ListNotificationConfigsResponse.fromJson(
  1. Map json_
)

Implementation

ListNotificationConfigsResponse.fromJson(core.Map json_)
    : this(
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
        notificationConfigs: json_.containsKey('notificationConfigs')
            ? (json_['notificationConfigs'] as core.List)
                .map((value) => NotificationConfig.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );