RotateSecretResponse.fromJson constructor

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

Implementation

factory RotateSecretResponse.fromJson(Map<String, dynamic> json) {
  return RotateSecretResponse(
    arn: json['ARN'] as String?,
    name: json['Name'] as String?,
    versionId: json['VersionId'] as String?,
  );
}