PluginActivationPlan constructor

const PluginActivationPlan({
  1. required List<PluginSetupDescriptor> orderedPlugins,
  2. List<PluginActivationError> errors = const [],
  3. int totalSteps = 0,
})

Implementation

const PluginActivationPlan({
  required this.orderedPlugins,
  this.errors = const [],
  this.totalSteps = 0,
});