isVisibleById static method

bool isVisibleById(
  1. String id
)

Returns true if the overlay with id is both active and currently visible (i.e. not in the invisible list).

Implementation

static bool isVisibleById(String id) =>
    isActiveById(id) && !_invisibleController.state.contains(id);