controller property

TextEditingController get controller

The text editing controller for the text field.

Implementation

TextEditingController get controller {
  var inputState = _inputState;
  assert(inputState != null, 'Feature not attached');
  return inputState!.effectiveController;
}