ConicSegment constructor

ConicSegment({
  1. required Offset control,
  2. required Offset end,
  3. required double weight,
  4. String? tag,
})

Creates a conic segment.

Implementation

ConicSegment({
  required this.control,
  required this.end,
  required this.weight,
  String? tag,
}) : super(
        tag: tag,
      );