FeraTextButton constructor

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

Implementation

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