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