UCommentJson.fromMap constructor
Implementation
factory UCommentJson.fromMap(Map<String, dynamic> json) => UCommentJson(
reacts: json["reacts"] == null ? <UCommentReacts>[] : List<UCommentReacts>.from(json["reacts"].map((dynamic x) => UCommentReacts.fromMap(x))),
);