getQRCodePaymentStatus method

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

Implementation

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