AbstractGeometryImageRenderSettings constructor

const AbstractGeometryImageRenderSettings({
  1. Color activeInnerColor = const Color.fromARGB(255, 255, 255, 255),
  2. Color activeOuterColor = const Color.fromARGB(255, 0, 0, 0),
  3. Color inactiveInnerColor = const Color.fromARGB(255, 128, 128, 128),
  4. Color inactiveOuterColor = const Color.fromARGB(255, 128, 128, 128),
})

Constructor with optional border size, border round corners and maximum rows

Parameters

  • IN activeInnerColor Active turn arrow inner color. If not specified, the SDK default is used
  • IN activeOuterColor Active turn arrow outer color. If not specified, the SDK default is used
  • IN inactiveInnerColor Inactive turn arrow inner color. If not specified, the SDK default is used
  • IN inactiveOuterColor Inactive turn arrow outer color. If not specified, the SDK default is used

Implementation

const AbstractGeometryImageRenderSettings({
  this.activeInnerColor = const Color.fromARGB(255, 255, 255, 255),
  this.activeOuterColor = const Color.fromARGB(255, 0, 0, 0),
  this.inactiveInnerColor = const Color.fromARGB(255, 128, 128, 128),
  this.inactiveOuterColor = const Color.fromARGB(255, 128, 128, 128),
});