isAdded<T> method
Checks if the instance record exists.
When key
is provided it will search the instance that have the same key
Implementation
@override
bool isAdded<T>({String? key}) => (key == null) //
? _hasBindByClassName(T.toString())
: _hasBindByKey(key);