startPaymentProcess method

  1. @override
void startPaymentProcess(
  1. AppModel app,
  2. BuildContext context,
  3. HandlePayment handlePayment,
  4. String? name,
  5. String? ccy,
  6. double? amount,
)
override

Implementation

@override
void startPaymentProcess(AppModel app, BuildContext context,
    HandlePayment handlePayment, String? name, String? ccy, double? amount) {
  openErrorDialog(app, context, '${app.documentID}/_paymenterror',
      title: 'Error',
      errorMessage:
          'Stripe payment not implemented (existing stripe package not supported anymore)');
}