copyWith method

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

Implementation

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