SendCustomVerificationEmailResponse.fromJson constructor
Implementation
factory SendCustomVerificationEmailResponse.fromJson(
Map<String, dynamic> json) {
return SendCustomVerificationEmailResponse(
messageId: json['MessageId'] as String?,
);
}