@override Future<String?> read() async { if (await _file.exists()) { return _file.readAsString(); } return null; }