checkExistEmailFromPro method

Future<bool> checkExistEmailFromPro(
  1. dynamic email
)

Implementation

Future<bool> checkExistEmailFromPro(email) async {
  NetworkResponse response = await _api.checkExistEmailFromPro({
    "email": email,
  });
  return response.data ?? false;
}