fetchModuleNetlist property
final
Optional callback to fetch full schematic data for a single module.
Used for incremental loading: when netlistJsonMap contains
hierarchy-slim data (modules with empty netnames/connections), the
viewer calls this to fetch full connectivity on demand as the user
expands modules. Returns a JSON map
{"DefinitionName": { ports, cells, netnames }} or null.
Implementation
final Future<Map<String, dynamic>?> Function(String definitionName)?
fetchModuleNetlist;