AiOutlinedButton constructor

const AiOutlinedButton({
  1. required VoidCallback onPressed,
  2. required String text,
  3. required bool isGreenButton,
  4. required bool isBlueFont,
  5. Key? key,
})

Implementation

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