NamedSet constructor

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

Implementation

NamedSet({
  this.description,
  this.elements = const [],
  this.fingerprint,
  this.name,
  this.type,
}) : super(fullyQualifiedName);