close method
Implementation
Future<void> close() async {
if (_closed) return;
_closed = true;
await _flush();
await _raf.close();
}
Future<void> close() async {
if (_closed) return;
_closed = true;
await _flush();
await _raf.close();
}