model property

TextInputModel get model

The current TextInputModel managed by this controller.

Implementation

TextInputModel get model => _model;
set model (TextInputModel next)

Sets the model and notifies listeners.

Implementation

set model(TextInputModel next) {
  if (identical(_model, next)) return;
  _model = next;
  notifyListeners();
}