close method Null safety
Implementation
Future<void> close() async {
if (_file == null) {
return;
}
var fp = _file;
_file = null;
_position = 0;
await fp!.close();
}
Future<void> close() async {
if (_file == null) {
return;
}
var fp = _file;
_file = null;
_position = 0;
await fp!.close();
}