GetUserAttributeVerificationCodeResponse.fromJson constructor

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

Implementation

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