PolarCoord constructor

PolarCoord({
  1. double? startAngle,
  2. double? endAngle,
  3. double? startRadius,
  4. double? endRadius,
  5. List<double>? angleRange,
  6. EventUpdater<List<double>>? angleRangeUpdater,
  7. List<double>? radiusRange,
  8. EventUpdater<List<double>>? radiusRangeUpdater,
  9. int? dimCount,
  10. double? dimFill,
  11. bool? transposed,
  12. Color? color,
  13. Gradient? gradient,
})

Creates a polar coord.

Implementation

PolarCoord({
  this.startAngle,
  this.endAngle,
  this.startRadius,
  this.endRadius,
  this.angleRange,
  this.angleRangeUpdater,
  this.radiusRange,
  this.radiusRangeUpdater,
  int? dimCount,
  double? dimFill,
  bool? transposed,
  Color? color,
  Gradient? gradient,
})  : assert(angleRange == null || angleRange.length == 2),
      assert(radiusRange == null || radiusRange.length == 2),
      super(
        dimCount: dimCount,
        dimFill: dimFill,
        transposed: transposed,
        color: color,
        gradient: gradient,
      );