hasWeightGraphData method

Future<bool> hasWeightGraphData()

Check if have weight graph data

Implementation

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