instanceNamesFor method

Set<String> instanceNamesFor(
  1. String moduleName
)

Instance names recorded for moduleName, or empty if none.

Implementation

Set<String> instanceNamesFor(String moduleName) =>
    _instances[moduleName]?.keys.toSet() ?? <String>{};