Qrcode.fromJson constructor

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

Implementation

Qrcode.fromJson(Map<String, dynamic> json) {
  rect = json['rect'] != null ?  Rect.fromJson(json['rect']) : null;
  status = json['status'];
  text = json['text'];
  type = json['type'];
}