copyWith method
Implementation
NotificationDashboardEntity copyWith({
String? documentID,
String? appId,
String? description,
StorageConditionsEntity? conditions,
}) {
return NotificationDashboardEntity(
appId: appId ?? this.appId,
description: description ?? this.description,
conditions: conditions ?? this.conditions,
);
}