ShapePointerConfig constructor

const ShapePointerConfig({
  1. ShapePointerStyle style = ShapePointerStyle.triangle,
  2. Color color = Colors.blue,
  3. double size = 15.0,
  4. ShapePointerPosition position = ShapePointerPosition.outer,
  5. double offsetRatio = 0.0,
  6. Color? borderColor,
  7. double borderWidth = 0.0,
  8. bool hasShadow = true,
})

Creates a shape pointer configuration.

Implementation

// ignore: sort_constructors_first
const ShapePointerConfig({
  this.style = ShapePointerStyle.triangle,
  this.color = Colors.blue,
  this.size = 15.0,
  this.position = ShapePointerPosition.outer,
  this.offsetRatio = 0.0,
  this.borderColor,
  this.borderWidth = 0.0,
  this.hasShadow = true,
});