TriangleAnnotation constructor

TriangleAnnotation({
  1. String? text,
  2. double radius = 5,
  3. Color color = Colors.green,
  4. TextStyle? textStyle,
  5. AnnotationAlignment annotationAlignment = AnnotationAlignment.Bottom,
})

Implementation

TriangleAnnotation({
  this.text,
  this.radius = 5,
  this.color = Colors.green,
  this.textStyle,
  this.annotationAlignment = AnnotationAlignment.Bottom,
});