toEntity method
Implementation
@override
TutorialEntryEntity toEntity({String? appId}) {
return TutorialEntryEntity(
description: (description != null) ? description : null,
imageId: (image != null) ? image!.documentID : null,
code: (code != null) ? code : null,
);
}