VectorPathCommandCubicBezierCurve constructor

VectorPathCommandCubicBezierCurve({
  1. String? extra,
  2. int? client_id,
  3. Point? start_control_point,
  4. Point? end_control_point,
  5. Point? end_point,
})

Implementation

VectorPathCommandCubicBezierCurve({
  super.extra,
  super.client_id,
  this.start_control_point,
  this.end_control_point,
  this.end_point,
});