BarcodeResponse.fromJson constructor
Creates a BarcodeResponse instance from a JSON representation.
Implementation
BarcodeResponse.fromJson(Map<String, dynamic> json) {
barcodeValue = json['barcodeValue'];
type = json['type'];
region = RegionPoint.listFromJson(json['region']);
checksum = json['checksum'];
}