removeDefined method
Implementation
void removeDefined(Object scheme) {
if (scheme is Set) {
scheme.forEach(_parseProcessors.remove);
} else if (scheme is String) {
_parseProcessors.remove(scheme);
} else {
throw ArgumentError.value(
scheme, "scheme", "The scheme should be either Set or String");
}
}