ProjectUpdate constructor

ProjectUpdate({
  1. required String name,
  2. String? description,
  3. String? website,
  4. bool? gallery,
  5. bool? translationsDe,
  6. bool? translationsEn,
  7. bool? translationsFr,
  8. bool? translationsIt,
  9. bool? backlinkUrls,
  10. Map<String, Object>? arbuttonConfig = const {},
})

Returns a new ProjectUpdate instance.

Implementation

ProjectUpdate({
  required this.name,
  this.description,
  this.website,
  this.gallery,
  this.translationsDe,
  this.translationsEn,
  this.translationsFr,
  this.translationsIt,
  this.backlinkUrls,
  this.arbuttonConfig = const {},
});