PolylineHandleOptions constructor

const PolylineHandleOptions({
  1. double size = 14.0,
  2. Color color = const Color(0xFFFFFFFF),
  3. Color borderColor = const Color(0xFF2196F3),
  4. double borderWidth = 2.0,
  5. Color activeColor = const Color(0xFF2196F3),
  6. Color activeBorderColor = const Color(0xFFFFFFFF),
  7. double activeBorderWidth = 2.0,
  8. double touchSizeFactor = 1.5,
})

Implementation

const PolylineHandleOptions({
  this.size = 14.0,
  this.color = const Color(0xFFFFFFFF),
  this.borderColor = const Color(0xFF2196F3),
  this.borderWidth = 2.0,
  this.activeColor = const Color(0xFF2196F3),
  this.activeBorderColor = const Color(0xFFFFFFFF),
  this.activeBorderWidth = 2.0,
  this.touchSizeFactor = 1.5,
});