ArcaneRawInput constructor

const ArcaneRawInput({
  1. ArcaneStyleData? styles,
  2. String? classes,
  3. String? id,
  4. String? name,
  5. InputType? type,
  6. String? value,
  7. String? placeholder,
  8. bool disabled = false,
  9. bool readOnly = false,
  10. bool required = false,
  11. bool autofocus = false,
  12. Map<String, String>? attributes,
  13. Map<String, void Function(dynamic)>? events,
  14. Key? key,
})

Implementation

const ArcaneRawInput({
  this.styles,
  this.classes,
  this.id,
  this.name,
  this.type,
  this.value,
  this.placeholder,
  this.disabled = false,
  this.readOnly = false,
  this.required = false,
  this.autofocus = false,
  this.attributes,
  this.events,
  super.key,
});