undo method
Implementation
@override
Future<void> undo() async {
repository.ignore.deleteIgnoreFile(
onRepositoryNotInitialized: () => debugPrintToConsole(
message: "Repository not initialized",
),
onSuccessfullyDeleted: () => debugPrintToConsole(
message: "Ignore file successfully deleted",
),
onDoesntExists: () => debugPrintToConsole(
message: "Ignore file doesn't exist",
),
);
}