closeAll method
Implementation
@override
void closeAll() {
for (final entry in List.from(_activeEntries)) {
if (entry.mounted) {
entry.remove();
}
}
_activeEntries.clear();
}
@override
void closeAll() {
for (final entry in List.from(_activeEntries)) {
if (entry.mounted) {
entry.remove();
}
}
_activeEntries.clear();
}