ExtensionDetails constructor

ExtensionDetails({
  1. String name = "app_name",
  2. String description = "app_description",
  3. String version = "1.0.0",
  4. String width = "200px",
  5. String height = "200px",
})

Implementation

ExtensionDetails({
  this.name = "app_name",
  this.description = "app_description",
  this.version = "1.0.0",
  this.width = "200px",
  this.height = "200px",
});