removeResource method

void removeResource(
  1. String fullName
)

Implementation

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