perf_timer 1.0.0 copy "perf_timer: ^1.0.0" to clipboard
perf_timer: ^1.0.0 copied to clipboard

discontinued
outdated

Perf timer for dart and flutter

Perf Timer #

Perf timer for dart and flutter Works only in dev mode

iTerm Screenshot

Example #

import 'package:perf_timer/perf_timer.dart';

void main() {
    final t = new PerfTimer();

    t.start('computation 1');
    someLongComputation();
    t.pause('computation 1');

    t.start('computation 2');
    someOtherLongComputation();
    t.pause('computation 2');

    print(t);
    t.stop();
}

Author #

Andrei Lesnitsky

License #

MIT