Returns the size of the file in bytes.
@override Future<int> size(String path) async { final file = _file(path); final stat = await file.stat(); return stat.size; }