toJson method
Implementation
@override
Map<String, dynamic> toJson([dynamic extra]) {
return {
"@type": CONSTRUCTOR,
"id": id,
"set_id": setId,
"width": width,
"height": height,
"emoji": emoji,
"format": format.toJson(),
"full_type": fullType.toJson(),
"outline": outline.map((i) => i.toJson()).toList(),
"thumbnail": thumbnail?.toJson(),
"sticker": sticker.toJson(),
};
}