copyWith method
GetGroupCallStreamSegment
copyWith({
- int? groupCallId,
- int? timeOffset,
- int? scale,
- int? channelId,
- GroupCallVideoQuality? videoQuality,
Implementation
GetGroupCallStreamSegment copyWith({
int? groupCallId,
int? timeOffset,
int? scale,
int? channelId,
GroupCallVideoQuality? videoQuality,
}) =>
GetGroupCallStreamSegment(
groupCallId: groupCallId ?? this.groupCallId,
timeOffset: timeOffset ?? this.timeOffset,
scale: scale ?? this.scale,
channelId: channelId ?? this.channelId,
videoQuality: videoQuality ?? this.videoQuality,
);