copyWith method
Implementation
NotificationPreference copyWith({Set<NotificationChannel>? channels, int? minSeverity}) =>
NotificationPreference(
category: category,
channels: channels ?? this.channels,
minSeverity: minSeverity ?? this.minSeverity,
);