isBulkMember method
Whether key is a member of the bulk animation group (either active
or pending removal at animation end).
Implementation
bool isBulkMember(TKey key) {
final g = _bulkAnimationGroup;
if (g == null) return false;
return g.members.contains(key) || g.pendingRemoval.contains(key);
}