fromJson static method
Implementation
static ResendCodeReasonVerificationFailed? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return ResendCodeReasonVerificationFailed(
errorMessage: (json['error_message'] as String?) ?? '',
);
}