Reads the stored save, or null if missing.
null
@override Future<String?> read() async { if (!await _file.exists()) { return null; } return _file.readAsString(); }