close method
Flushes then closes this instance.
- Closes randomAccessFile.
- See isClosed.
Implementation
@override
close() {
flush();
try {
_closed = true;
_io.closeSync();
} catch (_) {}
}
Flushes then closes this instance.
@override
close() {
flush();
try {
_closed = true;
_io.closeSync();
} catch (_) {}
}