copyWith method
Implementation
DividerEntity copyWith({
String? documentID,
String? appId,
String? description,
RgbEntity? color,
double? height,
double? thickness,
double? indent,
double? endIndent,
StorageConditionsEntity? conditions,
}) {
return DividerEntity(
appId: appId ?? this.appId,
description: description ?? this.description,
color: color ?? this.color,
height: height ?? this.height,
thickness: thickness ?? this.thickness,
indent: indent ?? this.indent,
endIndent: endIndent ?? this.endIndent,
conditions: conditions ?? this.conditions,
);
}