PrintQRCode.fromJson constructor

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

Implementation

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