PluginMarketplaceEntry constructor

const PluginMarketplaceEntry({
  1. required String name,
  2. String? description,
  3. String? version,
  4. String? sourceType,
  5. String? sourcePath,
  6. List<String> dependencies = const [],
})

Implementation

const PluginMarketplaceEntry({
  required this.name,
  this.description,
  this.version,
  this.sourceType,
  this.sourcePath,
  this.dependencies = const [],
});