goWithResult method

Future<E?> goWithResult(
  1. R pageData, [
  2. StandardPageNavigationMode? navigationMode
])

Navigate to the StandardPage of type T with the option to pass pageData during navigation. An optional navigationMode representing the mode of StandardPageNavigationMode to use during navigation can also be provided.

Implementation

Future<E?> goWithResult(
  R pageData, [
  StandardPageNavigationMode? navigationMode,
]) =>
    _delegate.goWithResult<T, R, E>(pageData, navigationMode);