EncodeParams constructor

EncodeParams({
  1. int format = Format.qrCode,
  2. int width = 100,
  3. int height = 100,
  4. int margin = 0,
  5. EccLevel eccLevel = EccLevel.low,
})

Implementation

EncodeParams({
  this.format = Format.qrCode,
  this.width = 100,
  this.height = 100,
  this.margin = 0,
  this.eccLevel = EccLevel.low,
});