initializePills method
void
initializePills({})
Called in the post-frame callback after the first layout pass.
Sets pillsInitialized and caches targets to prime change-detection.
Implementation
void initializePills({
required double tabW,
required double searchLeft,
required double searchW,
}) {
_prevTabWTarget = tabW;
_prevSearchLeftTarget = searchLeft;
_prevSearchWTarget = searchW;
_pillsInitialized = true;
_pillsInitScheduled = false;
notifyListeners();
}