copyWith method
Implementation
TutorialEntity copyWith({
String? documentID,
String? appId,
String? name,
String? title,
String? description,
List<TutorialEntryEntity>? tutorialEntries,
StorageConditionsEntity? conditions,
}) {
return TutorialEntity(
appId: appId ?? this.appId,
name: name ?? this.name,
title: title ?? this.title,
description: description ?? this.description,
tutorialEntries: tutorialEntries ?? this.tutorialEntries,
conditions: conditions ?? this.conditions,
);
}