BarCodeParams constructor

BarCodeParams(
  1. String data,
  2. bool withText,
  3. double lineWidth,
  4. double barHeight,
  5. String? altText,
)

Implementation

BarCodeParams(
  this.data,
  this.withText,
  this.lineWidth,
  this.barHeight,
  this.altText,
) : assert(data != null, "Data must be set for BarCodeParams");