onChange method

dynamic onChange(
  1. String value
)

Implementation

onChange(String value) {
  this.validateDirty();
  if (widget.onChange != null) {
    widget.onChange!(value);
  }
}