SoftUiTextButton constructor

const SoftUiTextButton({
  1. required String text,
  2. SoftUiTextStyles style = SoftUiTextStyles.titleSmall,
  3. TextDecoration decoration = TextDecoration.underline,
  4. IconData? icon,
  5. void onPressed()?,
  6. Key? key,
})

Implementation

const SoftUiTextButton({
  required this.text,
  this.style = SoftUiTextStyles.titleSmall,
  this.decoration = TextDecoration.underline,
  this.icon,
  this.onPressed,
  super.key,
});