PrintRow.fromJson constructor

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

Implementation

factory PrintRow.fromJson(Map<String, dynamic> json) => PrintRow(
  hr: json["hr"],
  br: json["br"],
  bold: json["bold"],
  bmpBase64: json["bmpBase64"],
  center: json["center"],
  text1: json["text1"],
  label1: json["label1"],
  text2: json["text2"],
  label2: json["label2"],
  text3: json["text3"],
  label3: json["label3"],
  charsPerLine: json["charsPerLine"],
);