isEmpty property
bool
get
isEmpty
True when nothing was recorded.
Implementation
bool get isEmpty =>
!phaseCalls.any((v) => v != 0) &&
!counts.any((v) => v != 0) &&
!events.any((v) => v != 0);