OverlayClass constructor

const OverlayClass({
  1. Key? key,
  2. required TextStyle style,
  3. required double width,
  4. required ThemeData theme,
  5. required dynamic function(
    1. RightClickOptions call
    ),
  6. required List<RightClickOptions> show,
})

Implementation

const OverlayClass({
  Key? key,
  required this.style,
  required this.width,
  required this.theme,
  required this.function,
  required this.show,
}):super(key: key);