copyWith method

Notification copyWith({
  1. int? id,
  2. int? date,
  3. bool? isSilent,
  4. NotificationType? type,
})

Implementation

Notification copyWith({
  int? id,
  int? date,
  bool? isSilent,
  NotificationType? type,
}) =>
    Notification(
      id: id ?? this.id,
      date: date ?? this.date,
      isSilent: isSilent ?? this.isSilent,
      type: type ?? this.type,
    );