BarcodeLocation constructor

BarcodeLocation({
  1. required String rawValue,
  2. double? latitude,
  3. double? longitude,
})

Implementation

BarcodeLocation({required String rawValue, this.latitude, this.longitude})
    : super(valueType: BarcodeValueType.location, rawValue: rawValue);