GgPopoverRoute constructor

const GgPopoverRoute({
  1. required Key key,
  2. required String name,
  3. String? semanticLabel,
  4. required Widget base,
  5. required WidgetBuilder popover,
  6. GgAnimationBuilder? inAnimation,
  7. GgAnimationBuilder? outAnimation,
  8. Duration animationDuration = const Duration(milliseconds: 500),
})

Constructor.

Implementation

const GgPopoverRoute({
  required Key key,
  required this.name,
  this.semanticLabel,
  required this.base,
  required this.popover,
  this.inAnimation,
  this.outAnimation,
  this.animationDuration = const Duration(milliseconds: 500),
}) : super(key: key);