copyWith method
Implementation
@override
TutorialEntryModel copyWith({
String? documentID,
String? description,
PlatformMediumModel? image,
String? code,
}) {
return TutorialEntryModel(
documentID: documentID ?? this.documentID,
description: description ?? this.description,
image: image ?? this.image,
code: code ?? this.code,
);
}