copyWith method
Implementation
ToggleGroupCallScreenSharingIsPaused copyWith({
int? groupCallId,
bool? isPaused,
}) =>
ToggleGroupCallScreenSharingIsPaused(
groupCallId: groupCallId ?? this.groupCallId,
isPaused: isPaused ?? this.isPaused,
);