getVirtualAccountPaymentStatus method

Future getVirtualAccountPaymentStatus({
  1. required String tnxRef,
})

Implementation

Future<dynamic> getVirtualAccountPaymentStatus({
  required String tnxRef,
}) async {
  return await VirtualAccountController.getVirtualAccountPaymentStatus(
    publicKey: _publicKey,
    tnxRef: tnxRef,
  );
}