copyWith method
Implementation
@override
UpdateRecentStickers copyWith({
bool? isAttached,
List<int>? stickerIds,
dynamic extra,
int? clientId,
}) => UpdateRecentStickers(
isAttached: isAttached ?? this.isAttached,
stickerIds: stickerIds ?? this.stickerIds,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);