clearAllNotifyStates method

Future<void> clearAllNotifyStates()

Implementation

Future<void> clearAllNotifyStates() async {
  if (!initialized) throw ArgumentError(AbstractDao.C_MUST_INIT);
  WaterLineFieldDto waterLineFieldDto = WaterLineFieldDto.sep(
      null,
      null,
      ChangeType.NOTIFY,
      0,
      NotifyState.CLIENT_OUT_OF_DATE,
      null,
      null,
      null,
      0,
      smdSys);
  await waterLineFieldDao.updateWaterLineFieldNotifyState(waterLineFieldDto);
}