start method
Implementation
void start([String? label]) {
if (!kDebugMode) return;
label ??= this.label;
startTime = DateTime.now();
print("======================================");
print("========== TIME LAPSE START ==========");
_displayLabel(label);
_unexpectableLabel(startTime.toString());
}