debugPhase property

BoxyDelegatePhase debugPhase

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

Implementation

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

Implementation

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