QrOptions constructor

const QrOptions({
  1. double padding = .125,
  2. ErrorCorrectionLevel ecl = ErrorCorrectionLevel.L,
  3. QrColors colors = const QrColors(),
  4. QrShapes shapes = const QrShapes(),
})

Implementation

const QrOptions({
  this.padding = .125,
  this.ecl = ErrorCorrectionLevel.L,
  this.colors = const QrColors(),
  this.shapes = const QrShapes(),
});