toJson method

  1. @override
Map<String, dynamic> toJson([
  1. dynamic extra
])
override

Implementation

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