bump version + formatting

This commit is contained in:
Luan Nico
2019-07-09 11:37:22 -03:00
parent 8696d309bb
commit 00519b0047
9 changed files with 15 additions and 13 deletions

View File

@ -1,4 +1,3 @@
/// Simple utility class that helps handling time counting and implementing interval like events.
///
class Timer {
@ -8,7 +7,7 @@ class Timer {
double _current = 0;
bool _running = false;
Timer(this._limit, { bool repeat = false, void Function() callback }) {
Timer(this._limit, {bool repeat = false, void Function() callback}) {
_repeat = repeat;
_callback = callback;
}