PluginUpdateResult constructor

const PluginUpdateResult({
  1. required bool success,
  2. required String message,
  3. String? pluginId,
  4. String? newVersion,
  5. String? oldVersion,
  6. bool alreadyUpToDate = false,
  7. PluginScope? scope,
})

Implementation

const PluginUpdateResult({
  required this.success,
  required this.message,
  this.pluginId,
  this.newVersion,
  this.oldVersion,
  this.alreadyUpToDate = false,
  this.scope,
});