FinderCorneredStyle constructor

FinderCorneredStyle({
  1. ScanbotColor? strokeColor,
  2. double strokeWidth = 3.0,
  3. double cornerRadius = 10.0,
})

Implementation

FinderCorneredStyle({
  ScanbotColor? strokeColor,
  this.strokeWidth = 3.0,
  this.cornerRadius = 10.0,
})  : strokeColor = strokeColor ?? ScanbotColor("#FFFFFFFF"),
      super();