PressableFill constructor

const PressableFill({
  1. Key? key,
  2. required Widget child,
  3. VoidCallback? onPressed,
  4. VoidCallback? onLongPressed,
  5. required PressableFillTheme? theme,
})

Implementation

const PressableFill({
  Key? key,
  required this.child,
  this.onPressed,
  this.onLongPressed,
  required this.theme,
}) : super(key: key);