ListCryptoKeyVersionsResponse.fromJson constructor
ListCryptoKeyVersionsResponse.fromJson(
- Map json_
Implementation
ListCryptoKeyVersionsResponse.fromJson(core.Map json_)
: this(
cryptoKeyVersions: json_.containsKey('cryptoKeyVersions')
? (json_['cryptoKeyVersions'] as core.List)
.map((value) => CryptoKeyVersion.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
totalSize: json_.containsKey('totalSize')
? json_['totalSize'] as core.int
: null,
);