RetrieveDomainAuthCodeResponse.fromJson constructor

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

Implementation

factory RetrieveDomainAuthCodeResponse.fromJson(Map<String, dynamic> json) {
  return RetrieveDomainAuthCodeResponse(
    authCode: json['AuthCode'] as String,
  );
}