CustomBlueButton constructor

const CustomBlueButton({
  1. required String text,
  2. required VoidCallback onPressed,
  3. bool isOutlined = true,
  4. Key? key,
})

Implementation

const CustomBlueButton({
  required this.text,
  required this.onPressed,
  this.isOutlined = true,
  super.key,
});