pay method

Future<void> pay({
  1. required int feeValue,
  2. String? orderId,
})

Implementation

Future<void> pay({
  required int feeValue,
  String? orderId,
}) {
  throw UnimplementedError('pay() has not been implemented.');
}