Button.info constructor

const Button.info({
  1. String? label,
  2. Widget? child,
  3. Widget? icon,
  4. Widget? trailing,
  5. void onPressed()?,
  6. ArcaneInteraction? action,
  7. ButtonSize size = ButtonSize.medium,
  8. bool disabled = false,
  9. bool loading = false,
  10. bool fullWidth = false,
  11. Map<String, String>? attributes,
  12. String? id,
  13. ButtonType type = ButtonType.button,
  14. String? href,
  15. bool showArrow = false,
  16. ArcaneStyleData? styles,
  17. ArcaneDecoration? decoration,
  18. Key? key,
})

Implementation

const Button.info({
  this.label,
  this.child,
  this.icon,
  this.trailing,
  this.onPressed,
  this.action,
  this.size = ButtonSize.medium,
  this.disabled = false,
  this.loading = false,
  this.fullWidth = false,
  this.attributes,
  this.id,
  this.type = ButtonType.button,
  this.href,
  this.showArrow = false,
  this.styles,
  this.decoration,
  super.key,
}) : variant = ButtonVariant.info;