checkEmailPro method

Future<CheckNewEmailProResult?> checkEmailPro(
  1. dynamic email
)

Implementation

Future<CheckNewEmailProResult?> checkEmailPro(email) async {
  NetworkResponse response = await _api.checkEmailPro({"email": email});
  return response.data;
}