fromJson static method

ConvModel fromJson(
  1. String source
)

Implementation

static ConvModel fromJson(String source) {
  Map<String, dynamic> map = json.decode(source);
  DraftModel? draftModel;
  if (map["draftModel"].toString().isNotEmpty) {
    draftModel = DraftModel.fromJson(map["draftModel"]);
  }
  return ConvModel(
    convId: map["convId"],
    convType: map["convType"],
    clientMsgId: map["clientMsgId"],
    noticeId: map["noticeId"],
    time: map["time"],
    unreadCount: map["unreadCount"],
    draftModel: draftModel,
    hidden: map["hidden"],
    deleted: map["deleted"],
  );
}