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