copyWith method
Implementation
InputSticker copyWith({
InputFile? sticker,
InputThumbnail? thumbnail,
int? width,
int? height,
}) => InputSticker(
sticker: sticker ?? this.sticker,
thumbnail: thumbnail ?? this.thumbnail,
width: width ?? this.width,
height: height ?? this.height,
);