Source constructor

Source({
  1. String? canonicalName,
  2. String? description,
  3. String? displayName,
  4. String? name,
})

Implementation

Source({
  this.canonicalName,
  this.description,
  this.displayName,
  this.name,
});