ArcaneFormattedInput constructor

const ArcaneFormattedInput({
  1. required FormattedValue initialValue,
  2. void onChanged(
    1. FormattedValue value
    )?,
  3. String? label,
  4. String? error,
  5. bool disabled = false,
  6. FormattedInputSize size = FormattedInputSize.md,
  7. Key? key,
})

Implementation

const ArcaneFormattedInput({
  required this.initialValue,
  this.onChanged,
  this.label,
  this.error,
  this.disabled = false,
  this.size = FormattedInputSize.md,
  super.key,
});