PluginSetupStep constructor

const PluginSetupStep({
  1. required SetupStepType type,
  2. required String label,
  3. bool required = true,
  4. Map<String, dynamic> config = const {},
})

Implementation

const PluginSetupStep({
  required this.type,
  required this.label,
  this.required = true,
  this.config = const {},
});