GoalsRemindStateBean.fromJson constructor

GoalsRemindStateBean.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory GoalsRemindStateBean.fromJson(Map<String, dynamic> json) =>
    GoalsRemindStateBean(
      stepsEnable: json["stepsEnable"] ?? false,
      caloriesEnable: json["caloriesEnable"] ?? false,
      distanceEnable: json["distanceEnable"] ?? false,
    );