getOutOfDateNotificationsListToSend method

Future<List<WaterLineFieldDto>> getOutOfDateNotificationsListToSend()

Implementation

Future<List<WaterLineFieldDto>> getOutOfDateNotificationsListToSend() async {
  if (!initialized) throw ArgumentError(AbstractDao.C_MUST_INIT);
  List<ChangeType> changeList = [];
  changeList.add(ChangeType.NOTIFY);
  return waterLineFieldDao.getWaterLineFieldListAboveLocalTs(
      changeList, NotifyState.CLIENT_OUT_OF_DATE, null, null, false, 500);
}