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