Datum.fromJson constructor
Implementation
factory Datum.fromJson(Map<String, dynamic> json) => Datum(
desc: json["desc"],
id: json["id"],
imagePath: json["imagePath"],
isVisible: json["isVisible"],
order: json["order"],
title: json["title"],
type: json["type"],
url: json["url"],
);