push<T extends Object?> method

Future<T?> push<T extends Object?>(
  1. DVRouteTarget target
)

Pushes target onto the navigation stack, keeping the current page.

Implementation

Future<T?> push<T extends Object?>(DVRouteTarget target) =>
    _active.push<T>(target.path);