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