checkLoginProByEmailOTP method

Future<bool> checkLoginProByEmailOTP(
  1. dynamic email
)

Implementation

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