copyWith method
Implementation
ScopeNotificationSettings copyWith({
int? muteFor,
String? sound,
bool? showPreview,
bool? disablePinnedMessageNotifications,
bool? disableMentionNotifications,
dynamic extra,
int? clientId,
}) => ScopeNotificationSettings(
muteFor: muteFor ?? this.muteFor,
sound: sound ?? this.sound,
showPreview: showPreview ?? this.showPreview,
disablePinnedMessageNotifications: disablePinnedMessageNotifications ?? this.disablePinnedMessageNotifications,
disableMentionNotifications: disableMentionNotifications ?? this.disableMentionNotifications,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);