isBulkMember method

bool isBulkMember(
  1. TKey key
)

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);
}