UContentItem.fromMap constructor
Implementation
factory UContentItem.fromMap(Map<String, dynamic> json) => UContentItem(
title: json["title"],
subTitle: json["subTitle"],
description: json["description"],
iconBase64: json["iconBase64"],
imageBase64: json["imageBase64"],
link: json["link"],
order: json["order"],
);