worstFrameMs property
double
get
worstFrameMs
Implementation
double get worstFrameMs => frames.isEmpty
? 0
: frames.map((f) => f.totalMs).reduce((a, b) => a > b ? a : b);
double get worstFrameMs => frames.isEmpty
? 0
: frames.map((f) => f.totalMs).reduce((a, b) => a > b ? a : b);