ListPublicKeysResponse.fromJson constructor
Implementation
factory ListPublicKeysResponse.fromJson(Map<String, dynamic> json) {
return ListPublicKeysResponse(
nextToken: json['NextToken'] as String?,
publicKeyList: (json['PublicKeyList'] as List?)
?.whereNotNull()
.map((e) => PublicKey.fromJson(e as Map<String, dynamic>))
.toList(),
);
}