clearTemplate method
Deletes the saved template from local storage.
Implementation
Future<void> clearTemplate() async {
final prefs = await SharedPreferences.getInstance();
await prefs.remove(_storageKey);
}
Deletes the saved template from local storage.
Future<void> clearTemplate() async {
final prefs = await SharedPreferences.getInstance();
await prefs.remove(_storageKey);
}