attachNotificationTree method Null safety

  1. @protected
void attachNotificationTree()
protected">@protected

Called in Element.mount and Element.activate to register this element in the notification tree.

This method is only exposed so that NotifiableElementMixin can be implemented. Subclasses of Element that wish to respond to notifications should mix that in instead.

See also:

Implementation

@protected
void attachNotificationTree() {
  _notificationTree = _parent?._notificationTree;
}