HighlightRenderSettings constructor

HighlightRenderSettings({
  1. Set<HighlightOptions> options = const <HighlightOptions>{HighlightOptions.showLandmark},
  2. Color innerColor = const Color.fromARGB(255, 255, 98, 0),
  3. Color outerColor = const Color.fromARGB(255, 255, 98, 0),
  4. double innerSz = 1.5,
  5. double outerSz = RenderSettings.defaultOuterSize,
  6. double imgSz = RenderSettings.defaultImageSize,
  7. double textSz = RenderSettings.defaultTextSize,
  8. Color textColor = RenderSettings.defaultTextColor,
  9. LineType lineType = RenderSettings.defaultLineType,
  10. ImagePosition imagePosition = RenderSettings.defaultImagePosition,
})

Implementation

HighlightRenderSettings({
  super.options = const <HighlightOptions>{HighlightOptions.showLandmark},
  super.innerColor = const Color.fromARGB(255, 255, 98, 0),
  super.outerColor = const Color.fromARGB(255, 255, 98, 0),
  super.innerSz = 1.5,
  super.outerSz = RenderSettings.defaultOuterSize,
  super.imgSz = RenderSettings.defaultImageSize,
  super.textSz = RenderSettings.defaultTextSize,
  super.textColor = RenderSettings.defaultTextColor,
  super.lineType = RenderSettings.defaultLineType,
  super.imagePosition = RenderSettings.defaultImagePosition,
});