LockStyle constructor

const LockStyle({
  1. bool isShowArrow = true,
  2. double lineWidth = 3.0,
  3. double borderWidth = 1.0,
  4. Color selectedColor = Colors.blue,
  5. Color defaultColor = Colors.grey,
  6. Color errorColor = Colors.red,
})

Implementation

const LockStyle({
  this.isShowArrow = true,
  this.lineWidth = 3.0,
  this.borderWidth = 1.0,
  this.selectedColor = Colors.blue,
  this.defaultColor = Colors.grey,
  this.errorColor = Colors.red,
});