ArcaneFormInteger<T> constructor

const ArcaneFormInteger<T>({
  1. Key? key,
  2. Widget builder(
    1. BuildContext context,
    2. ArcaneFormIntegerState<T> state
    )?,
  3. bool showButtons = true,
  4. required int reader(
    1. T t
    ),
  5. required T writer(
    1. T t,
    2. int s
    ),
  6. int? maxValue,
  7. int? minValue,
  8. Widget? placeholder,
  9. String? label,
  10. String? subLabel,
})

Implementation

const ArcaneFormInteger(
    {super.key,
    this.builder,
    this.showButtons = true,
    required this.reader,
    required this.writer,
    this.maxValue,
    this.minValue,
    this.placeholder,
    super.label,
    super.subLabel});