copyWith method
Implementation
CreateNewBasicGroupChat copyWith({
List<int>? userIds,
String? title,
}) => CreateNewBasicGroupChat(
userIds: userIds ?? this.userIds,
title: title ?? this.title,
);
CreateNewBasicGroupChat copyWith({
List<int>? userIds,
String? title,
}) => CreateNewBasicGroupChat(
userIds: userIds ?? this.userIds,
title: title ?? this.title,
);