toJson method
Implementation
@override
Map<String, dynamic> toJson([dynamic extra]) {
return {
"@type": CONSTRUCTOR,
"animation": animation.toJson(),
"thumbnail": thumbnail?.toJson(),
"added_sticker_file_ids": addedStickerFileIds.map((i) => i).toList(),
"duration": duration,
"width": width,
"height": height,
"caption": caption?.toJson(),
"has_spoiler": hasSpoiler,
};
}