hasBodyTemperatureGraphData method
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;
}