FeraSecondaryButton constructor

const FeraSecondaryButton({
  1. Key? key,
  2. required String text,
  3. required VoidCallback onPressed,
  4. bool isBig = false,
  5. IconData? icon,
  6. bool isDisabled = false,
})

Implementation

const FeraSecondaryButton({
  Key? key,
  required this.text,
  required this.onPressed,
  this.isBig = false,
  this.icon,
  this.isDisabled = false,
}) : super(key: key);