Future<int> getTotalSteps(DateTime start, DateTime end) async { int? steps = await health.getTotalStepsInInterval(start, end); return steps ?? 0; }