AuthenticationDto.sep constructor

AuthenticationDto.sep(
  1. int? newRecords,
  2. int? serverTs,
  3. WardenType? warden,
  4. SchemaMetaData smdSys,
)

Implementation

AuthenticationDto.sep(int? newRecords, int? serverTs, WardenType? warden, SchemaMetaData smdSys) {
  trDto = TrDto.wee(C_TABLE_ID);
  waterLineDto=WaterLineDto.sep(null, null, null, C_TABLE_ID, smdSys);
  this.newRecords = newRecords;
  this.serverTs = serverTs;
  this.warden = warden;
  super.sep(trDto, smdSys, waterLineDto: waterLineDto, water_table_id: C_TABLE_ID);
}