Misc constructor

Misc()

Creates a Stopwatch in stopped state with a zero elapsed count.

The following example shows how to start a Stopwatch immediately after allocation.

final misc = Misc()..startWatch();
//Also it is same
final misc = Misc.watch();

Implementation

Misc();