copyWith method

  1. @override
MessageBasicGroupChatCreate copyWith({
  1. String? title,
  2. List<int>? memberUserIds,
})
override

Implementation

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