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