checkNewProEmail method

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

Implementation

Future<CheckNewEmailProResult?> checkNewProEmail(email) async {
  NetworkResponse response = await _api.checkNewProEmail({
    "email": email,
    'allowPrivacyTypeId': 1,
    'platformId': valuePlatformByConfig(),
  });
  return response.data;
}