LineAnnotation constructor

LineAnnotation({
  1. Dim? dim,
  2. String? variable,
  3. required dynamic value,
  4. PaintStyle? style,
  5. int? layer,
})

Creates a line annotation.

Implementation

LineAnnotation({
  this.dim,
  this.variable,
  required this.value,
  this.style,
  int? layer,
}) : super(
        layer: layer,
      );