arc static method

ArcLightingType arc({
  1. required double endRadAngle,
  2. double startRadAngle = 0,
  3. bool isCenter = false,
})

Implementation

static ArcLightingType arc({
  required double endRadAngle,
  double startRadAngle = 0,
  bool isCenter = false,
}) =>
    ArcLightingType(
      endRadAngle: endRadAngle,
      startRadAngle: startRadAngle,
      isCenter: isCenter,
    );