Datum.fromJson constructor

Datum.fromJson(
  1. Map<String, dynamic> json
)

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"],
);