BMFGradientCircle constructor Null safety

BMFGradientCircle(
  1. {Color? centerColor,
  2. Color? sideColor,
  3. double? radiusWeight,
  4. double? colorWeight,
  5. required BMFCoordinate center,
  6. required double radius,
  7. int? width,
  8. Color? strokeColor,
  9. BMFLineDashType? lineDashType,
  10. 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,
      );