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

discontinued

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() {
    PerfTimer.start('computation 1');
    someLongComputation();
    PerfTimer.pause('computation 1');

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

    print(PerfTimer.report());
    PerfTimer.stop();
}

Author #

Andrei Lesnitsky

License #

MIT