TutorialEntryEntity constructor Null safety

TutorialEntryEntity(
  1. {String? description,
  2. String? imageId,
  3. String? code}
)

Implementation

TutorialEntryEntity({
  this.description,
  this.imageId,
  this.code,
});