confirmNewProCode method

Future<ConfirmOtp?> confirmNewProCode({
  1. dynamic email,
  2. dynamic code,
})

Implementation

Future<ConfirmOtp?> confirmNewProCode({email, code}) async {
  NetworkResponse response = await _api.confirmNewProCode({
    "email": email,
    "code": code,
  });
  return response.data;
}