toJson method
Implementation
@override
Map<String, dynamic> toJson([dynamic extra]) {
return {
"@type": CONSTRUCTOR,
"chat_id": chatId,
"list": list?.toJson(),
"order": order,
"max_read_story_id": maxReadStoryId,
"stories": stories.map((i) => i.toJson()).toList(),
};
}