V2TimConversationFilter.fromJson constructor

V2TimConversationFilter.fromJson(
  1. Map json
)

Implementation

V2TimConversationFilter.fromJson(Map json) {
  json = Utils.formatJson(json);
  conversationType = json['conversation_list_filter_conv_type'];
  conversationGroup = json['conversation_list_filter_conversation_group'] ?? "";
  markType = json['conversation_list_filter_mark_type'] ?? 0;
  hasUnreadCount = json['conversation_list_filter_has_unread_count'];
  hasGroupAtInfo = json['conversation_list_filter_has_group_at_info'];
}