StackRoute constructor

StackRoute({
  1. required String id,
  2. required Page page,
  3. required String name,
  4. Completer? completer,
  5. dynamic params,
  6. NavigationPageController? controller,
})

Implementation

StackRoute({
  required this.id,
  required this.page,
  required this.name,
  this.completer,
  this.params,
  this.controller,
});