Component constructor

Component({
  1. String? key,
  2. String? name,
  3. String? description,
  4. bool? remote,
  5. List? documentationLinks,
})

Implementation

Component({
  this.key,
  this.name,
  this.description,
  this.remote,
  this.documentationLinks,
});