PluginOperationResult constructor

const PluginOperationResult({
  1. required bool success,
  2. required String message,
  3. String? pluginId,
  4. String? pluginName,
  5. PluginScope? scope,
  6. List<String>? reverseDependents,
})

Implementation

const PluginOperationResult({
  required this.success,
  required this.message,
  this.pluginId,
  this.pluginName,
  this.scope,
  this.reverseDependents,
});