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