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