Code constructor

Code({
  1. String? text,
  2. bool isValid = false,
  3. String? error,
  4. Uint8List? rawBytes,
  5. int? format,
  6. Position? position,
  7. bool isInverted = false,
  8. bool isMirrored = false,
  9. int duration = 0,
})

Implementation

Code({
  this.text,
  this.isValid = false,
  this.error,
  this.rawBytes,
  this.format,
  this.position,
  this.isInverted = false,
  this.isMirrored = false,
  this.duration = 0,
});