QuerySource constructor

QuerySource({
  1. String? displayName,
  2. List<QueryOperator>? operators,
  3. String? shortName,
  4. Source? source,
})

Implementation

QuerySource({
  this.displayName,
  this.operators,
  this.shortName,
  this.source,
});