PluginSetupDescriptor constructor

const PluginSetupDescriptor({
  1. required String pluginId,
  2. required String displayName,
  3. List<PluginSetupStep> steps = const [],
  4. List<String> providerIds = const [],
  5. List<String> cliBackendIds = const [],
  6. List<String> dependsOn = const [],
  7. bool hotReloadable = false,
})

Implementation

const PluginSetupDescriptor({
  required this.pluginId,
  required this.displayName,
  this.steps = const [],
  this.providerIds = const [],
  this.cliBackendIds = const [],
  this.dependsOn = const [],
  this.hotReloadable = false,
});