push<T> function
Implementation
Future<T?> push<T>(BuildContext context, Widget page, {String? routeName}) {
return Navigator.push<T>(context, defaultPage<T>(page, routeName: routeName));
}
Future<T?> push<T>(BuildContext context, Widget page, {String? routeName}) {
return Navigator.push<T>(context, defaultPage<T>(page, routeName: routeName));
}