copyWith method
Implementation
BluxNotification copyWith({
String? id,
String? body,
String? title,
String? url,
String? imageUrl,
Map<String, dynamic>? data,
}) {
return BluxNotification(
id: id ?? this.id,
body: body ?? this.body,
title: title ?? this.title,
url: url ?? this.url,
imageUrl: imageUrl ?? this.imageUrl,
data: data ?? this.data,
);
}