RedirectPointer constructor

const RedirectPointer({
  1. Key? key,
  2. Widget? child,
  3. List<GlobalKey<State<StatefulWidget>>> above = const [],
  4. List<GlobalKey<State<StatefulWidget>>> below = const [],
})

Implementation

const RedirectPointer({
  super.key,
  super.child,
  this.above = const [],
  this.below = const [],
});