NamedSet constructor

NamedSet({
  1. String? description,
  2. List<Expr>? elements,
  3. String? fingerprint,
  4. String? name,
  5. String? type,
})

Implementation

NamedSet({
  this.description,
  this.elements,
  this.fingerprint,
  this.name,
  this.type,
});