copyWith method

  1. @override
UpdateActiveNotifications copyWith({
  1. List<NotificationGroup>? groups,
  2. dynamic extra,
  3. 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,
);