Theme constructor

Theme({
  1. String? name,
  2. String? version,
  3. String? versionLatest,
  4. String? authorUrl,
  5. bool? isChildTheme,
  6. bool? hasWoocommerceSupport,
  7. bool? hasWoocommerceFile,
  8. bool? hasOutdatedTemplates,
  9. List? overrides,
  10. String? parentName,
  11. String? parentVersion,
  12. String? parentVersionLatest,
  13. String? parentAuthorUrl,
})

Implementation

Theme({
  this.name,
  this.version,
  this.versionLatest,
  this.authorUrl,
  this.isChildTheme,
  this.hasWoocommerceSupport,
  this.hasWoocommerceFile,
  this.hasOutdatedTemplates,
  this.overrides,
  this.parentName,
  this.parentVersion,
  this.parentVersionLatest,
  this.parentAuthorUrl,
});