QrEyeStyle constructor

const QrEyeStyle({
  1. QrEyeShape eyeShape = QrEyeShape.square,
  2. Color? color,
  3. double size = 1,
  4. double borderRadius = 0,
})

Create a new set of styling options for QR Eye.

Implementation

const QrEyeStyle({
  this.eyeShape = QrEyeShape.square,
  this.color,
  this.size = 1,
  this.borderRadius = 0,
});