setMaxTs method

Future<WaterLineFieldDto> setMaxTs(
  1. ChangeType changeType,
  2. int? localTs,
  3. int? remoteTs
)

Implementation

Future<WaterLineFieldDto> setMaxTs(
    ChangeType changeType, int? localTs, int? remoteTs) async {
  return await setWaterLineField(
      DbConstants.C_MEDIUMINT_MAX,
      TransactionTools.C_MAX_INT_TABLE_ID,
      changeType,
      WaterLineFieldDto.C_USER_ID_NONE,
      null,
      null,
      null,
      localTs,
      remoteTs);
}