Write data at offset. Extends the file if necessary.
data
offset
@override Future<void> writeBytes(int offset, Uint8List data) async { await _raf.setPosition(offset); await _raf.writeFrom(data); }