delete method

dynamic delete(
  1. String historyFolderPath, [
  2. String? date,
  3. String? entry
])

Delete history using arguments as filter.

  • author: iruzo
  • params:
    • historyFolderPath (e.g. /history)
    • [date (e.g. "0000-00-00 00:00:00.000Z") (You can specify as much as you want, if you want only a Year, you need to type the rest as 0, e.g. "2000-00-00 00:00:00.000000")
    • entry (e.g. some text that was saved before in the history).
  • return: void.

Implementation

delete(String historyFolderPath, [String? date, String? entry]) =>
    Delete(historyFolderPath, date, entry).call();