FogEffect constructor

FogEffect({
  1. Color color = const Color(0xFF000000),
  2. double density = 0.02,
  3. double near = 10,
  4. double far = 100,
  5. bool enabled = false,
})

Implementation

FogEffect({
  this.color = const Color(0xFF000000),
  this.density = 0.02,
  this.near = 10,
  this.far = 100,
  this.enabled = false,
});