copyWith method
NotificationSounds
copyWith({
- List<
NotificationSound> ? notificationSounds, - dynamic extra,
- int? clientId,
Implementation
NotificationSounds copyWith({
List<NotificationSound>? notificationSounds,
dynamic extra,
int? clientId,
}) =>
NotificationSounds(
notificationSounds: notificationSounds ?? this.notificationSounds,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);