TagAnnotation constructor

TagAnnotation({
  1. required Label label,
  2. List<String>? variables,
  3. List? values,
  4. Offset anchor(
    1. Size
    )?,
  5. bool? clip,
  6. int? layer,
})

Creates a tag annotation.

Implementation

TagAnnotation({
  required this.label,
  List<String>? variables,
  List? values,
  Offset Function(Size)? anchor,
  bool? clip,
  int? layer,
}) : super(
        variables: variables,
        values: values,
        anchor: anchor,
        clip: clip,
        layer: layer,
      );