ArcaneFormString<T> constructor
const
ArcaneFormString<T> ({
- Key? key,
- Widget builder(
- BuildContext context,
- ArcaneFormStringState<
T> state
- required String reader(
- T t
- required T writer(
- T t,
- String s
- String? placeholder,
- bool textArea = false,
- String? label,
- String? subLabel,
Implementation
const ArcaneFormString(
{super.key,
this.builder,
required this.reader,
required this.writer,
this.placeholder,
this.textArea = false,
super.label,
super.subLabel});