Datum.fromJson constructor
Implementation
factory Datum.fromJson(Map<String, dynamic> json) => Datum(
image: json["image"],
align: json["align"],
imagewidth: json["imagewidth"],
imageheight: json["imageheight"],
flex: json["flex"],
text: json["text"],
textsize: json["textsize"],
bold: json["bold"],
textwrap: json["textwrap"],
);