S360fFilledButton constructor

const S360fFilledButton({
  1. required String label,
  2. S360fButtonSize size = S360fButtonSize.medium,
  3. VoidCallback? onPressed,
  4. bool isDisable = false,
  5. Widget? startIcon,
  6. Widget? endIcon,
  7. Widget? suffix,
  8. BorderRadius? borderRadius,
  9. S360fWidgetColorVariant color = S360fWidgetColorVariant.primary,
  10. Key? key,
})

Implementation

const S360fFilledButton({
  required super.label,
  super.size,
  super.onPressed,
  super.isDisable,
  super.startIcon,
  super.endIcon,
  super.suffix,
  super.borderRadius,
  super.color,
  super.key,
});