MultipleRouterListener<T> constructor

const MultipleRouterListener<T>({
  1. PushEventCallback? onPush,
  2. PopEventCallback<T>? onPop,
  3. Widget? child,
  4. List<String>? paths,
  5. List<String>? ids,
  6. Key? key,
})

Implementation

const MultipleRouterListener({
  PushEventCallback? onPush,
  PopEventCallback<T>? onPop,
  Widget? child,
  List<String>? paths,
  List<String>? ids,
  Key? key,
})  : _paths = paths,
      _ids = ids,
      super(onPush: onPush, onPop: onPop, child: child, key: key);