ARKitLight constructor

ARKitLight({
  1. ARKitLightType type = ARKitLightType.omni,
  2. Color? color = Colors.white,
  3. double temperature = 6500,
  4. double? intensity,
  5. double spotInnerAngle = 0,
  6. double spotOuterAngle = 45,
})

Implementation

ARKitLight({
  this.type = ARKitLightType.omni,
  this.color = Colors.white,
  this.temperature = 6500,
  double? intensity,
  this.spotInnerAngle = 0,
  this.spotOuterAngle = 45,
}) : intensity = ValueNotifier(intensity ?? 1000);