history_service 1.0.1 copy "history_service: ^1.0.1" to clipboard
history_service: ^1.0.1 copied to clipboard

3 simple functionalities that helps you manage any kind of history.

history_service #

Description #

This library contains 3 simple functionalities that helps you manage any kind of history. (e.g. download history, search history, app logs...).

The way to use this library is creating an instance of History main class every time you want to use it and calling the methods. The functionalities will be executed in an isolated thread.

Installation #

In your pubspec.yaml root add:

dependencies:
  history_service: ^1.0.1

then,

import 'package:history_service/history_service.dart';

Implementation #

History history = History();
history.historyAdd('dataToStore', 'pathToHistoryFolder');

Methods #

Method Description Arguments Return type
Add Add entry to history String historyFolderPath, String entry void
Read Read history history using arguments as filter String historyFolderPath, [String date, String entry] Future<List<String>>
Delete Delete history using arguments as filter String historyFolderPath, [String date, String entry] void
0
likes
120
pub points
0%
popularity

Publisher

unverified uploader

3 simple functionalities that helps you manage any kind of history.

Repository (GitLab)
View/report issues

Documentation

Documentation
API reference

License

MIT (LICENSE)

More

Packages that depend on history_service