GesturePasswordWidget constructor

const GesturePasswordWidget({
  1. Key? key,
  2. double pointRadius = 10,
  3. double frameRadius = 40,
  4. Color color = Colors.grey,
  5. Color highlightColor = Colors.blue,
  6. Color pathColor = Colors.blue,
  7. dynamic onFinishGesture(
    1. List<int>
    )?,
  8. double pathWidth = 5,
})

Implementation

const GesturePasswordWidget({
  Key? key,
  this.pointRadius = 10,
  this.frameRadius = 40,
  this.color = Colors.grey,
  this.highlightColor = Colors.blue,
  this.pathColor = Colors.blue,
  this.onFinishGesture,
  this.pathWidth = 5,
}) : super(key: key);