ClfFilledButton constructor

ClfFilledButton({
  1. Key? key,
  2. String? text,
  3. VoidCallback? onPressed,
  4. IconData? icon,
  5. Color? backgroundColor,
  6. bool iconBeforeText = false,
  7. double? width,
  8. double? height,
})

Implementation

ClfFilledButton({
  super.key,
  this.text,
  this.onPressed,
  this.icon,
  this.backgroundColor,
  this.iconBeforeText = false,
  this.width,
  this.height,
});