registrar property
The SelectionRegistrar this paragraph will be, or is, registered to.
Implementation
SelectionRegistrar? get registrar => _registrar;
Implementation
set registrar(SelectionRegistrar? value) {
if (value == _registrar) {
return;
}
_removeSelectionRegistrarSubscription();
_disposeSelectableFragments();
_registrar = value;
_updateSelectionRegistrarSubscription();
}