verifyPayment method
Verify a payment manually
Implementation
Future<PaymentResponse> verifyPayment(String transactionId) async {
if (_provider == null) {
throw StateError('PaymentService not initialized. Call init() first.');
}
return await _provider!.verifyPayment(transactionId);
}