ListTaskPushNotificationConfigResponse.fromJson constructor

ListTaskPushNotificationConfigResponse.fromJson(
  1. Map json_
)

Implementation

ListTaskPushNotificationConfigResponse.fromJson(core.Map json_)
  : this(
      configs: (json_['configs'] as core.List?)
          ?.map(
            (value) => TaskPushNotificationConfig.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      nextPageToken: json_['nextPageToken'] as core.String?,
    );