ArcaneRawButton constructor

const ArcaneRawButton({
  1. required Component child,
  2. ArcaneStyleData? styles,
  3. String? classes,
  4. String? id,
  5. String? type,
  6. bool disabled = false,
  7. void onClick()?,
  8. Map<String, void Function(dynamic)>? events,
  9. Key? key,
})

Implementation

const ArcaneRawButton({
  required this.child,
  this.styles,
  this.classes,
  this.id,
  this.type,
  this.disabled = false,
  this.onClick,
  this.events,
  super.key,
});