blob: 830fc63d2be279a3f5eb0dfc89fb4ab57da68568 [file] [log] [blame] [view]
# closeHandles method
void closeHandles
()
<p>Attempts to close all stored handles, ignoring any errors.</p>
## Implementation
```dart
void closeHandles() {
for (final handle in handles) {
try {
handle.close();
// ignore: avoid_catches_without_on_clauses
} catch (e) {
// best effort
}
}
}
```