LoadedPlugin constructor

const LoadedPlugin({
  1. required String name,
  2. String? source,
  3. String? version,
  4. bool enabled = true,
  5. PluginScope? scope,
  6. String? installPath,
  7. List<String> dependencies = const [],
})

Implementation

const LoadedPlugin({
  required this.name,
  this.source,
  this.version,
  this.enabled = true,
  this.scope,
  this.installPath,
  this.dependencies = const [],
});