StyleMode
Value class representing the style mode used by the RoadShieldIconProvider when generating images.
The StyleMode.Main style is synonymous with a light or day theme and the StyleMode.Dark style with a dark or night theme.
Usage Example
val provider = RoadShieldIconProvider(context)
// Set day theme (default)
provider.styleMode = StyleMode.Main
// Set night theme
provider.styleMode = StyleMode.DarkContent copied to clipboard