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