class QRClass { String code; String type; List rawBytes; QRClass({ this.code, this.type, this.rawBytes, }); QRClass.fromJson(Map json) : code = json['code'], type = json['type'], rawBytes = json['rawBytes']; }