ResendContactReachabilityEmailResponse.fromJson constructor

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

Implementation

factory ResendContactReachabilityEmailResponse.fromJson(
    Map<String, dynamic> json) {
  return ResendContactReachabilityEmailResponse(
    domainName: json['domainName'] as String?,
    emailAddress: json['emailAddress'] as String?,
    isAlreadyVerified: json['isAlreadyVerified'] as bool?,
  );
}