debugPrintBulkAnimationState method

void debugPrintBulkAnimationState()

Debug helper to print bulk animation state. Call this to verify animation is running correctly.

Implementation

void debugPrintBulkAnimationState() {
  if (_activeBulkGroup == null) {
    debugPrint('TreeController: No bulk animation group');
    return;
  }
  final controller = _activeBulkGroup!.controller;
  debugPrint(
    'TreeController bulk animation: '
    'value=${_activeBulkGroup!.value.toStringAsFixed(3)}, '
    'controllerValue=${controller.value.toStringAsFixed(3)}, '
    'status=${controller.status}, '
    'members=${_activeBulkGroup!.members.length}, '
    'pendingRemoval=${_activeBulkGroup!.pendingRemoval.length}',
  );
}