PluginInstallStatus constructor

const PluginInstallStatus({
  1. required String name,
  2. required InstallationStatus status,
  3. String? error,
})

Implementation

const PluginInstallStatus({
  required this.name,
  required this.status,
  this.error,
});