PinWidget constructor

const PinWidget({
  1. Key? key,
  2. required double pinWidth,
  3. required double pinHeight,
  4. bool isDown = false,
  5. PinDownBehavior pinDownBehavior = PinDownBehavior.hide,
})

Implementation

const PinWidget({
  super.key,
  required this.pinWidth,
  required this.pinHeight,
  this.isDown = false,
  this.pinDownBehavior = PinDownBehavior.hide,
});