LaneImageRenderSettings constructor

const LaneImageRenderSettings({
  1. Color backgroundColor = const Color.fromARGB(0, 0, 0, 0),
  2. Color activeColor = const Color.fromARGB(255, 255, 255, 255),
  3. Color inactiveColor = const Color.fromARGB(255, 140, 140, 140),
})

Constructor

Parameters

  • IN backgroundColor Background color
  • IN activeColor Active lanes color
  • IN inactiveColor Inactive lanes color

Implementation

const LaneImageRenderSettings({
  this.backgroundColor = const Color.fromARGB(0, 0, 0, 0),
  this.activeColor = const Color.fromARGB(255, 255, 255, 255),
  this.inactiveColor = const Color.fromARGB(255, 140, 140, 140),
});