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