readCurrent method
Implementation
@override
Future<String> readCurrent() {
return enqueueResult(() async {
await _sink?.flush();
final file = _currentFile;
if (file == null || !file.existsSync()) {
return '';
}
return file.readAsString();
});
}