property property

CurrentProperty<T?> get property

Implementation

CurrentProperty<T?> get property {
  final boundProperty = _property;

  if (boundProperty == null) {
    throw CurrentTextControllerNotInitializedException<T>();
  }

  return boundProperty;
}