NamedQuery constructor

NamedQuery({
  1. required String database,
  2. required String name,
  3. required String queryString,
  4. String? description,
  5. String? namedQueryId,
  6. String? workGroup,
})

Implementation

NamedQuery({
  required this.database,
  required this.name,
  required this.queryString,
  this.description,
  this.namedQueryId,
  this.workGroup,
});