manualVerification method
Implementation
Future<APIResponse> manualVerification({required String paymentCode}) async {
try {
final response = await _networkService.call(
"${UrlConfig.coreBaseUrl}${UrlConfig.manualVerify}/$paymentCode", RequestMethod.post, data: {});
return APIResponse.fromJson(response.data);
} catch (e) {
rethrow;
}
}