getWaterLineFieldListAboveLocalTs method

Future<List<WaterLineFieldDto>> getWaterLineFieldListAboveLocalTs(
  1. List<ChangeType> changeList,
  2. NotifyState? notifyState,
  3. int? localTs,
  4. SortOrderType? sortOrderType,
  5. bool includeMax,
  6. int limit,
)

Implementation

Future<List<WaterLineFieldDto>> getWaterLineFieldListAboveLocalTs(
    List<ChangeType> changeList,
    NotifyState? notifyState,
    int? localTs,
    SortOrderType? sortOrderType,
    bool includeMax,
    int limit) async {
  return await getWaterLineFieldList(
      null,
      null,
      changeList,
      null,
      notifyState,
      null,
      localTs,
      SqlOperator.GREATER,
      sortOrderType,
      includeMax,
      limit);
}