scriptsMap property
Map<String, RunnableScript>
get
scriptsMap
A map of the registered scripts, keyed by name.
Implementation
Map<String, RunnableScript> get scriptsMap => Map.fromIterable(
scripts,
key: (element) => (element as RunnableScript).name,
);