ArcaneFormString<T> constructor

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

Implementation

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