MmPluginManifest constructor

MmPluginManifest({
  1. String? id,
  2. String? name,
  3. String? description,
  4. String? version,
  5. String? minServerVersion,
  6. MmPluginManifestBackend? backend,
  7. MmPluginManifestServer? server,
  8. MmPluginManifestWebapp? webapp,
  9. Map? settingsSchema,
})

Returns a new MmPluginManifest instance.

Implementation

MmPluginManifest({
  this.id,
  this.name,
  this.description,
  this.version,
  this.minServerVersion,
  this.backend,
  this.server,
  this.webapp,
  this.settingsSchema,
});