copyWith method
Implementation
TutorialEntryEntity copyWith({
String? documentID,
String? description,
String? imageId,
String? code,
}) {
return TutorialEntryEntity(
description: description ?? this.description,
imageId: imageId ?? this.imageId,
code: code ?? this.code,
);
}