monthlySteps property

int get monthlySteps

Implementation

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