ChatFilterInfo.fromJson constructor

ChatFilterInfo.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory ChatFilterInfo.fromJson(Map<String, dynamic> json) => ChatFilterInfo(
  id: json['id'],
  title: json['title'],
  iconName: json['icon_name'],
  extra: json['@extra'],
  clientId: json['@client_id'],
);