SearchParams.fromJson constructor

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

Implementation

SearchParams.fromJson(Map<String, dynamic> json) {
  conversationID = json['conversationID'];
  if (json['clientMsgIDList'] != null) {
    clientMsgIDList = json['clientMsgIDList'].cast<String>();
  }
}