PluginMarketplaceEntry constructor

const PluginMarketplaceEntry({
  1. required String name,
  2. String? description,
  3. String? version,
  4. dynamic source,
  5. String? category,
  6. List<String>? tags,
  7. bool? strict,
  8. String? id,
  9. bool? autoUpdate,
})

Implementation

const PluginMarketplaceEntry({
  required this.name,
  this.description,
  this.version,
  this.source,
  this.category,
  this.tags,
  this.strict,
  this.id,
  this.autoUpdate,
});