BMFGradientCircle(- {Color? centerColor,
- Color? sideColor,
- double? radiusWeight,
- double? colorWeight,
- required BMFCoordinate center,
- required double radius,
- int? width,
- Color? strokeColor,
- BMFLineDashType? lineDashType,
- bool? dottedLine}
)
Implementation
BMFGradientCircle({
this.centerColor,
this.sideColor,
this.radiusWeight,
this.colorWeight,
required BMFCoordinate center,
required double radius,
int? width,
Color? strokeColor,
BMFLineDashType? lineDashType,
bool? dottedLine,
}) : super(
center: center,
radius: radius,
width: width,
strokeColor: strokeColor,
lineDashType: lineDashType,
dottedLine: dottedLine,
);