debugPhase property

BoxyDelegatePhase get debugPhase

The current phase in the render pipeline that this boxy is performing.

Implementation

BoxyDelegatePhase get debugPhase => _debugPhase;
set debugPhase (BoxyDelegatePhase state)

Implementation

set debugPhase(BoxyDelegatePhase state) {
  assert(() {
    _debugPhase = state;
    return true;
  }());
}