copyWith method
Implementation
WebpushNotification copyWith({
String? title,
String? body,
String? icon,
}) =>
WebpushNotification(
title: title ?? this.title,
body: body ?? this.body,
icon: icon ?? this.icon,
);
WebpushNotification copyWith({
String? title,
String? body,
String? icon,
}) =>
WebpushNotification(
title: title ?? this.title,
body: body ?? this.body,
icon: icon ?? this.icon,
);