replaceWithProcessingPaymentView method
Future
replaceWithProcessingPaymentView(
{ - required String payType,
- Key? key,
- int? routerId,
- bool preventDuplicates = true,
- Map<String, String>? parameters,
- Widget transition(
- BuildContext,
- Animation<double>,
- Animation<double>,
- Widget,
)?,
})
Implementation
Future<dynamic> replaceWithProcessingPaymentView({
required String payType,
_i12.Key? key,
int? routerId,
bool preventDuplicates = true,
Map<String, String>? parameters,
Widget Function(BuildContext, Animation<double>, Animation<double>, Widget)?
transition,
}) async {
return replaceWith<dynamic>(Routes.processingPaymentView,
arguments: ProcessingPaymentViewArguments(payType: payType, key: key),
id: routerId,
preventDuplicates: preventDuplicates,
parameters: parameters,
transition: transition);
}