fromFileAsync static method
Implementation
static Future<BytesFileIO> fromFileAsync(
File file, {
int? length,
bool append = true,
}) async {
var io = await file.open(mode: append ? FileMode.append : FileMode.write);
return BytesFileIO(io, length: length);
}