BloodPressureBean constructor

BloodPressureBean({
  1. required int type,
  2. required bool? continueState,
  3. required BloodPressureChangeBean? pressureChange,
  4. required List<HistoryBloodPressureBean>? historyBpList,
  5. required BloodPressureInfo? continueBp,
})

Implementation

BloodPressureBean({
  required this.type,
  required this.continueState,
  required this.pressureChange,
  required this.historyBpList,
  required this.continueBp,
});