copyWith method

  1. @override
MessageInviteVideoChatParticipants copyWith({
  1. int? groupCallId,
  2. List<int>? userIds,
})
override

Implementation

@override
MessageInviteVideoChatParticipants copyWith({
  int? groupCallId,
  List<int>? userIds,
}) =>
    MessageInviteVideoChatParticipants(
      groupCallId: groupCallId ?? this.groupCallId,
      userIds: userIds ?? this.userIds,
    );