copyWith method
UpdateInstalledStickerSets
copyWith({
- StickerType? stickerType,
- List<
int> ? stickerSetIds, - dynamic extra,
- int? clientId,
override
Implementation
@override
UpdateInstalledStickerSets copyWith({
StickerType? stickerType,
List<int>? stickerSetIds,
dynamic extra,
int? clientId,
}) =>
UpdateInstalledStickerSets(
stickerType: stickerType ?? this.stickerType,
stickerSetIds: stickerSetIds ?? this.stickerSetIds,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);