TutorialEntryModel constructor

TutorialEntryModel({
  1. required String documentID,
  2. String? description,
  3. PlatformMediumModel? image,
  4. String? code,
})

Implementation

TutorialEntryModel({
  required this.documentID,
  this.description,
  this.image,
  this.code,
});