Barcode constructor

Barcode({
  1. Aamva? aamva,
  2. String? base64Value,
  3. List<int>? coordinates,
  4. String? format,
  5. String? value,
})

Implementation

Barcode({
    this.aamva,
    this.base64Value,
    this.coordinates,
    this.format,
    this.value,
});