toJson method

Map<String, dynamic> toJson()

Converts a ForumTopicCreated object to json.

Implementation

Map<String, dynamic> toJson() {
  return {
    'name': name,
    'color': color,
    'icon_custom_emoji_id': iconCustomEmojiId,
  }..removeWhere(_nullFilter);
}