GetUserAttributeVerificationCodeResponse.fromJson constructor
Implementation
factory GetUserAttributeVerificationCodeResponse.fromJson(
Map<String, dynamic> json) {
return GetUserAttributeVerificationCodeResponse(
codeDeliveryDetails: json['CodeDeliveryDetails'] != null
? CodeDeliveryDetailsType.fromJson(
json['CodeDeliveryDetails'] as Map<String, dynamic>)
: null,
);
}