reset method
override
Resets the field to its initial value.
Implementation
@override
void reset() {
effectiveController.text = widget.initialValue ?? '';
super.reset();
widget.onChange?.call(effectiveController.text);
}
Resets the field to its initial value.
@override
void reset() {
effectiveController.text = widget.initialValue ?? '';
super.reset();
widget.onChange?.call(effectiveController.text);
}