FilledButton constructor

const FilledButton({
  1. Key? key,
  2. ButtonStyle? style,
  3. VoidCallback? onPressed,
  4. required Text child,
})

Implementation

const FilledButton({
  super.key,
  this.style,
  this.onPressed, required Text child,
});