copyWith method

  1. @override
UpdateSavedNotificationSounds copyWith({
  1. List<int>? notificationSoundIds,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

@override
UpdateSavedNotificationSounds copyWith({
  List<int>? notificationSoundIds,
  dynamic extra,
  int? clientId,
}) =>
    UpdateSavedNotificationSounds(
      notificationSoundIds: notificationSoundIds ?? this.notificationSoundIds,
      extra: extra ?? this.extra,
      clientId: clientId ?? this.clientId,
    );