copyWith method

InviteGroupCallParticipant copyWith({
  1. int? groupCallId,
  2. int? userId,
  3. bool? isVideo,
})

Implementation

InviteGroupCallParticipant copyWith({
  int? groupCallId,
  int? userId,
  bool? isVideo,
}) => InviteGroupCallParticipant(
  groupCallId: groupCallId ?? this.groupCallId,
  userId: userId ?? this.userId,
  isVideo: isVideo ?? this.isVideo,
);