TFieldProp<T> constructor
TFieldProp<T> (
- T value, {
- bool useNotifier = false,
- ValueChanged<
T?> ? onValueChanged,
Implementation
TFieldProp(T value, {bool useNotifier = false, this.onValueChanged})
: _value = value,
initialValue = value,
_valueNotifier = useNotifier ? ValueNotifier(value) : null;