sep method

void sep(
  1. int? ts,
  2. OperationType? operation,
  3. int? user_id,
  4. int? user_ts,
  5. String? comment,
  6. int? crc,
  7. int table_id, {
  8. FieldData? fieldData,
})

Implementation

void sep(int? ts, OperationType? operation, int? user_id, int? user_ts,
    String? comment, int? crc, int table_id,
    {FieldData? fieldData}) {
  super.wee(table_id, fieldData: fieldData);
  this.ts = ts;
  this.operation = operation;
  this.user_id = user_id;
  this.user_ts = user_ts;
  this.comment = comment;
  this.crc = crc;
}