Transaction constructor

Transaction({
  1. Map<String, String>? data,
  2. List<Wheres>? where,
  3. List<Map<String, String>>? listData,
  4. List<String>? select,
  5. int limit = 100,
  6. List<OrderBy>? orderBy,
  7. String joinQuery = '',
  8. List<String>? groupBy,
  9. List<Joins>? joins,
})

Implementation

Transaction({this.data, this.where, this.listData, this.select, this.limit = 100, this.orderBy, this.joinQuery = '', this.groupBy, this.joins});