queryTrainingDayGoals property

Future<DailyGoalsInfoBean> queryTrainingDayGoals

Implementation

Future<DailyGoalsInfoBean> get queryTrainingDayGoals async {
  String jsonStr = await mConnconst.invokeMethod('queryTrainingDayGoals');
  DailyGoalsInfoBean goalsInfoBean = dailyGoalsInfoBeanFromJson(jsonStr);
  return goalsInfoBean;
}