todaySteps property

int get todaySteps

Implementation

int get todaySteps {
  final now = DateTime.now();
  return _todayStepTimestamps
      .where((ts) =>
          ts.year == now.year && ts.month == now.month && ts.day == now.day)
      .length;
}