TutorialEntity constructor

TutorialEntity({
  1. required String? appId,
  2. String? name,
  3. String? title,
  4. String? description,
  5. List<TutorialEntryEntity>? tutorialEntries,
  6. StorageConditionsEntity? conditions,
})

Implementation

TutorialEntity({
  required this.appId,
  this.name,
  this.title,
  this.description,
  this.tutorialEntries,
  this.conditions,
});