Query constructor

const Query({
  1. required String sql,
  2. QueryType type = QueryType.select,
  3. String? description,
})

Implementation

const Query({
  required this.sql,
  this.type = QueryType.select,
  this.description,
});