getTrList method

Future<RawTableData> getTrList(
  1. int? ts,
  2. OperationType? operationType,
  3. int? userId,
  4. int? userTs,
  5. String? comment,
  6. int? crc,
  7. SortOrderType? sortOrderType,
  8. bool? oldestTs,
  9. SqlOperator? sqlOperator,
)

Implementation

Future<RawTableData> getTrList(
    int? ts,
    OperationType? operationType,
    int? userId,
    int? userTs,
    String? comment,
    int? crc,
    SortOrderType? sortOrderType,
    bool? oldestTs,
    SqlOperator? sqlOperator) {
  WhereData whereData=setWhereValues(ts, operationType, userId, userTs, comment, crc, null);
  return selectTR(whereData);
}