copyWith method
Implementation
JSNotification copyWith({String? title, JSNotificationOptions? options}) {
return JSNotification(
title ?? this.title,
options ?? this.options,
);
}
JSNotification copyWith({String? title, JSNotificationOptions? options}) {
return JSNotification(
title ?? this.title,
options ?? this.options,
);
}