NiceFormField<T> constructor
- Key? key,
- required String name,
- required Widget builder(
- FormFieldState<
T> state
- FormFieldState<
- String? validator(
- T? value
- T? initialValue,
Implementation
const NiceFormField({
super.key,
required this.name,
required this.builder,
this.validator,
this.initialValue,
});