copyWith method
UpdateActiveNotifications
copyWith({
- List<
NotificationGroup> ? groups, - dynamic extra,
- int? clientId,
override
Implementation
@override
UpdateActiveNotifications copyWith({
List<NotificationGroup>? groups,
dynamic extra,
int? clientId,
}) =>
UpdateActiveNotifications(
groups: groups ?? this.groups,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);