copyWith method

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

Implementation

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