StoredQuery constructor

StoredQuery({
  1. required String queryName,
  2. String? description,
  3. String? expression,
  4. String? queryArn,
  5. String? queryId,
})

Implementation

StoredQuery({
  required this.queryName,
  this.description,
  this.expression,
  this.queryArn,
  this.queryId,
});