payWithUSSD method

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

Implementation

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