busyFor method

bool busyFor(
  1. Object key
)

Returns the busy status for a key if it exists. Returns false if not present

Implementation

bool busyFor(Object key) => _busyStates[key] ?? false;