格式化时长为 ss 格式(自动补零)
static String formatSs(Duration duration) { String twoDigits(int n) => n.toString().padLeft(2, '0'); return twoDigits(duration.inSeconds.remainder(60)); }