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