ArrowPainter constructor

ArrowPainter({
  1. required BuildContext context,
  2. required double distanceFromObject,
  3. double? dx,
  4. double? dy,
  5. Path arrowBuilder(
    1. Path path,
    2. double contentWidth,
    3. double contentHeight,
    4. bool fitBellow,
    5. double distanceFromObject,
    )?,
  6. double? width,
  7. double? height,
  8. required double contentWidth,
  9. required double contentHeight,
  10. required bool fitBellow,
  11. required Color color,
})

Implementation

ArrowPainter({
  required this.context,
  required this.distanceFromObject,
  this.dx,
  this.dy,
  this.arrowBuilder,
  this.width,
  this.height,
  required this.contentWidth,
  required this.contentHeight,
  required this.fitBellow,
  required this.color,
});