LineLabel constructor

const LineLabel({
  1. required String text,
  2. required double position,
  3. TextStyle? style,
  4. Vector3? offset,
})

Implementation

const LineLabel({
  required this.text,
  required this.position,
  this.style,
  this.offset,
});