DescribeCustomKeyStoresResponse.fromJson constructor
Implementation
factory DescribeCustomKeyStoresResponse.fromJson(Map<String, dynamic> json) {
return DescribeCustomKeyStoresResponse(
customKeyStores: (json['CustomKeyStores'] as List?)
?.whereNotNull()
.map((e) =>
CustomKeyStoresListEntry.fromJson(e as Map<String, dynamic>))
.toList(),
nextMarker: json['NextMarker'] as String?,
truncated: json['Truncated'] as bool?,
);
}