append method
Implementation
Future<void> append(String data) async {
final entry = '${DateTime.now()}: $data\n';
await storage.writeAsString(entry, mode: FileMode.append);
content = await storage.readAsString();
notifyListeners();
print(data);
}