TutorialModel constructor

TutorialModel({
  1. required String documentID,
  2. required String appId,
  3. String? name,
  4. String? title,
  5. String? description,
  6. List<TutorialEntryModel>? tutorialEntries,
  7. StorageConditionsModel? conditions,
})

Implementation

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