CreateKeyResponse.fromJson constructor

CreateKeyResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CreateKeyResponse.fromJson(Map<String, dynamic> json) {
  return CreateKeyResponse(
    keyMetadata: json['KeyMetadata'] != null
        ? KeyMetadata.fromJson(json['KeyMetadata'] as Map<String, dynamic>)
        : null,
  );
}