├── .githooks ├── pre-commit └── pre-push ├── .github └── workflows │ ├── check-dart.yaml │ ├── ci.yaml │ ├── pub-score.yaml │ ├── publish.yaml │ └── wip.yaml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── dartdoc_options.yaml ├── example ├── countdown.dart └── example.dart ├── lib └── pausable_timer.dart ├── pubspec.yaml └── test └── pausable_timer_test.dart /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.githooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/.githooks/pre-push -------------------------------------------------------------------------------- /.github/workflows/check-dart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/.github/workflows/check-dart.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/pub-score.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/.github/workflows/pub-score.yaml -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.github/workflows/wip.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/.github/workflows/wip.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /dartdoc_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/dartdoc_options.yaml -------------------------------------------------------------------------------- /example/countdown.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/example/countdown.dart -------------------------------------------------------------------------------- /example/example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/example/example.dart -------------------------------------------------------------------------------- /lib/pausable_timer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/lib/pausable_timer.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/pausable_timer_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateusfccp/pausable_timer/HEAD/test/pausable_timer_test.dart --------------------------------------------------------------------------------