PrintRow.fromJson constructor

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

Implementation

PrintRow.fromJson(Map<String, dynamic> json) {
  text = json['text'];
  fontSize = json['fontSize'];
  position = json['position'];
}