V2TimGroupChangeInfo.fromJson constructor

V2TimGroupChangeInfo.fromJson(
  1. Map json
)

Implementation

V2TimGroupChangeInfo.fromJson(Map json) {
  json = Utils.formatJson(json);
  type = json['group_tips_group_change_info_flag'];
  value = json['group_tips_group_change_info_value'];
  key = json['group_tips_group_change_info_key'];
  boolValue = json['group_tips_group_change_info_bool_value'];
  intValue = json["group_tips_group_change_info_int_value"];
  if ( json['group_tips_group_change_info_uint64_value'] is int) {
    uint64Value = json['group_tips_group_change_info_uint64_value'];
  }
}