IncommePaymentMethod constructor
IncommePaymentMethod({
- Key? key,
- required String orderGroupID,
- String? callBackRouteName,
- dynamic onProcess(
- CheckoutPayment result
- dynamic onError(
- String error
- dynamic onResultPaymentClosePressed()?,
- dynamic onRetryPaymentPressed()?,
- dynamic onChangePaymentPressed()?,
- dynamic onCompleted(
- IncommePaymentStatus result
Implementation
IncommePaymentMethod({
super.key,
required this.orderGroupID,
String? callBackRouteName,
this.onProcess,
this.onError,
this.onResultPaymentClosePressed,
this.onRetryPaymentPressed,
this.onChangePaymentPressed,
this.onCompleted,
}) : callBackRouteName = callBackRouteName ?? '/';