copyWith method

  1. @override
UpdateFavoriteStickers copyWith({
  1. List<int>? stickerIds,
  2. dynamic extra,
  3. int? clientId,
})
override

Implementation

@override
UpdateFavoriteStickers copyWith({
  List<int>? stickerIds,
  dynamic extra,
  int? clientId,
}) => UpdateFavoriteStickers(
  stickerIds: stickerIds ?? this.stickerIds,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);