allActiveModalIds property

List<String> get allActiveModalIds

Gets all currently active modal IDs

Returns a list of unique IDs for all active modals from the registry. This is the authoritative source of truth for active modals.

Useful for debugging or managing complex modal states.

Implementation

static List<String> get allActiveModalIds =>
    _modalRegistry.state.keys.toList();