copyWith method

UpdateGroupCallParticipants copyWith({
  1. int? groupCallId,
  2. List<int>? participantUserIds,
})

Implementation

UpdateGroupCallParticipants copyWith({
  int? groupCallId,
  List<int>? participantUserIds,
}) => UpdateGroupCallParticipants(
  groupCallId: groupCallId ?? this.groupCallId,
  participantUserIds: participantUserIds ?? this.participantUserIds,
);