copyWith method
ChatDashboardModel
copyWith({
- String? documentID,
- String? appId,
- String? description,
- StorageConditionsModel? conditions,
- MembersType? membersType,
override
Implementation
@override
ChatDashboardModel copyWith({
String? documentID,
String? appId,
String? description,
StorageConditionsModel? conditions,
MembersType? membersType,
}) {
return ChatDashboardModel(
documentID: documentID ?? this.documentID,
appId: appId ?? this.appId,
description: description ?? this.description,
conditions: conditions ?? this.conditions,
membersType: membersType ?? this.membersType,
);
}