remove method
Removes a registered converter between the specified source and target types.
🔧 Example
registry.removeConvertible(Class<String>(), Class<int>());
Implementation
@override
void remove(Class sourceType, Class targetType) {
_converters.remove(sourceType, targetType);
_invalidateCache();
}