GoogleCloudApigeeV1ListDebugSessionsResponse.fromJson constructor

GoogleCloudApigeeV1ListDebugSessionsResponse.fromJson(
  1. Map json_
)

Implementation

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