HighlightRenderSettings constructor
HighlightRenderSettings({ - Set<HighlightOptions> options = const <HighlightOptions>{HighlightOptions.showLandmark},
- Color innerColor = const Color.fromARGB(255, 255, 98, 0),
- Color outerColor = const Color.fromARGB(255, 255, 98, 0),
- double innerSz = 1.5,
- double outerSz = RenderSettings.defaultOuterSize,
- double imgSz = RenderSettings.defaultImageSize,
- double textSz = RenderSettings.defaultTextSize,
- Color textColor = RenderSettings.defaultTextColor,
- LineType lineType = RenderSettings.defaultLineType,
- 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,
});