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