ArcaneFormBool<T> constructor

const ArcaneFormBool<T>({
  1. Key? key,
  2. Widget builder(
    1. BuildContext context
    )?,
  3. bool rightHanded = false,
  4. bool tristate = false,
  5. required bool? reader(
    1. T t
    ),
  6. required T writer(
    1. T t,
    2. bool? s
    ),
  7. String? placeholder,
  8. required String? label,
  9. String? subLabel,
})

Implementation

const ArcaneFormBool(
    {super.key,
    this.builder,
    this.rightHanded = false,
    this.tristate = false,
    required this.reader,
    required this.writer,
    this.placeholder,
    required super.label,
    super.subLabel});