Implementation constructor

Implementation({
  1. List<Icon>? icons,
  2. required String name,
  3. String? description,
  4. String? title,
  5. String? version,
  6. String? websiteUrl,
})

Implementation

Implementation({
  this.icons,
  required this.name,
  this.description,
  this.title,
  this.version,
  this.websiteUrl,
});