SampleButton constructor

const SampleButton({
  1. Key? key,
  2. required String text,
  3. VoidCallback? onPressed,
})

Implementation

const SampleButton({
  Key? key,
  required this.text,
  this.onPressed,
}) : super(key: key);