copyWith method

NotificationSounds copyWith({
  1. List<NotificationSound>? notificationSounds,
  2. dynamic extra,
  3. 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,
    );