MiuixVectorPath constructor

const MiuixVectorPath({
  1. required Path build(),
  2. PaintingStyle style = PaintingStyle.fill,
  3. Color color = const Color(0xFF000000),
  4. double alpha = 1.0,
  5. double strokeWidth = 0.0,
  6. StrokeCap strokeCap = StrokeCap.butt,
  7. Matrix4? groupTransform,
})

Implementation

const MiuixVectorPath({
  required this.build,
  this.style = PaintingStyle.fill,
  this.color = const Color(0xFF000000),
  this.alpha = 1.0,
  this.strokeWidth = 0.0,
  this.strokeCap = StrokeCap.butt,
  this.groupTransform,
});