doPayment method

Future<Map?> doPayment({
  1. required AuropayBuilder builder,
  2. required double amount,
  3. String? orderId,
})

doPayment @param AuropayBuilder

initiate payment with platform specific chanel and required data

Implementation

Future<Map<dynamic, dynamic>?> doPayment(
    {required AuropayBuilder builder,
    required double amount,
    String? orderId}) {
  throw UnimplementedError('Auropay has been not initialized.');
}