removeResource method
Implementation
void removeResource(String fullName) {
for (final context in contexts) {
final normalized = context.getAbsolutePath(key: fullName);
if (context.contains(normalized)) {
context.removeResource(normalized);
}
return;
}
}