busy method Null safety
- Object? object
Returns the busy status for an object if it exists. Returns false if not present
Implementation
bool busy(Object? object) => _busyStates[object.hashCode] ?? false;
Returns the busy status for an object if it exists. Returns false if not present
bool busy(Object? object) => _busyStates[object.hashCode] ?? false;