copyWith method
Implementation
SimpleTextEntity copyWith({
String? documentID,
String? appId,
String? description,
String? title,
String? text,
StorageConditionsEntity? conditions,
int? textAlign,
}) {
return SimpleTextEntity(
appId: appId ?? this.appId,
description: description ?? this.description,
title: title ?? this.title,
text: text ?? this.text,
conditions: conditions ?? this.conditions,
textAlign: textAlign ?? this.textAlign,
);
}