FeraCTAButton constructor

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

Implementation

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