ListRuntimeVersionsResponse.fromJson constructor
ListRuntimeVersionsResponse.fromJson(
- Map _json
Implementation
ListRuntimeVersionsResponse.fromJson(core.Map _json)
: this(
nextPageToken: _json.containsKey('nextPageToken')
? _json['nextPageToken'] as core.String
: null,
runtimeVersions: _json.containsKey('runtimeVersions')
? (_json['runtimeVersions'] as core.List)
.map((value) => RuntimeVersion.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
unreachable: _json.containsKey('unreachable')
? (_json['unreachable'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);