copyWith method
UpdateNotification
copyWith({
- int? notificationGroupId,
- Notification? notification,
- dynamic extra,
- int? clientId,
override
Implementation
@override
UpdateNotification copyWith({
int? notificationGroupId,
Notification? notification,
dynamic extra,
int? clientId,
}) =>
UpdateNotification(
notificationGroupId: notificationGroupId ?? this.notificationGroupId,
notification: notification ?? this.notification,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);