hasBodyTemperatureGraphData method

Future<bool> hasBodyTemperatureGraphData()

Check if have body temperature graph data

Implementation

Future<bool> hasBodyTemperatureGraphData() async {
  return (await getTemperatureLog(
          startDate: DateTime.now().add(const Duration(days: -1000)),
          endDate: DateTime.now()))
      .isNotEmpty;
}