go method

Future<T?> go(
  1. BuildContext context
)

Navigate to modal route

Implementation

Future<T?> go(BuildContext context) {
  final page = this.page(context);
  final theme = ModalRouteTheme.fromRoute(context, this);
  return PipenRouterConfigs.modalBuilder.builder<T>(context, this, page, theme);
}