DatumRawQuery constructor

const DatumRawQuery({
  1. String? sql,
  2. List<Object?> args = const [],
  3. String? table,
  4. String? select,
  5. Map<String, dynamic>? filters,
  6. bool count = false,
  7. Map<String, dynamic> metadata = const {},
})

Implementation

const DatumRawQuery({
  this.sql,
  this.args = const [],
  this.table,
  this.select,
  this.filters,
  this.count = false,
  this.metadata = const {},
});