anchorOffset property

int get anchorOffset

Implementation

int get anchorOffset => _anchorOffset;
set anchorOffset (int value)

Implementation

set anchorOffset(int value) {
  if (_anchorOffset == value) return;
  _anchorOffset = value;
  if (!_suppressNotifications) notifyListeners();
}