delegate property
The current delegate of this boxy.
Implementation
@override
BoxBoxyDelegateMixin<Object, ChildHandleType> get delegate => _delegate;
set
delegate
(covariant BoxBoxyDelegateMixin<Object, ChildHandleType> newDelegate)
covariantoverride
Implementation
@override
set delegate(BoxBoxyDelegateMixin<Object, ChildHandleType> newDelegate) {
final oldDelegate = delegate;
_delegate = newDelegate;
notifyChangedDelegate(oldDelegate);
}