GhostButton constructor

const GhostButton({
  1. Key? key,
  2. required Widget child,
  3. ButtonState? state,
  4. VoidCallback? onPressed,
})

Implementation

const GhostButton({
  super.key,
  required this.child,
  this.state,
  this.onPressed,
});