copyWith method
Sticker
copyWith({
- int? id,
- int? setId,
- int? width,
- int? height,
- String? emoji,
- StickerFormat? format,
- StickerFullType? fullType,
- Thumbnail? thumbnail,
- File? sticker,
Implementation
Sticker copyWith({
int? id,
int? setId,
int? width,
int? height,
String? emoji,
StickerFormat? format,
StickerFullType? fullType,
Thumbnail? thumbnail,
File? sticker,
}) => Sticker(
id: id ?? this.id,
setId: setId ?? this.setId,
width: width ?? this.width,
height: height ?? this.height,
emoji: emoji ?? this.emoji,
format: format ?? this.format,
fullType: fullType ?? this.fullType,
thumbnail: thumbnail ?? this.thumbnail,
sticker: sticker ?? this.sticker,
);