TextButton constructor

const TextButton({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. VoidCallback? onLongPress,
  4. Widget? child,
  5. ButtonStyle? style,
})

Implementation

const TextButton({
  super.key,
  this.onPressed,
  this.onLongPress,
  this.child,
  this.style,
});