toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = <String, dynamic>{};
data['conversation_list_filter_conv_type'] = conversationType;
data['conversation_list_filter_conversation_group'] = conversationGroup;
data['conversation_list_filter_mark_type'] = markType;
data['conversation_list_filter_has_unread_count'] = hasUnreadCount;
data['conversation_list_filter_has_group_at_info'] = hasGroupAtInfo;
return data;
}