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