crosshair static method
regular:
thin:
light:
bold:
fill:
duotone:
Implementation
static PhosphorIconData crosshair(
[PhosphorIconsStyle style = PhosphorIconsStyle.regular]) {
switch (style) {
case PhosphorIconsStyle.regular:
return PhosphorIconsRegular.crosshair;
case PhosphorIconsStyle.thin:
return PhosphorIconsThin.crosshair;
case PhosphorIconsStyle.light:
return PhosphorIconsLight.crosshair;
case PhosphorIconsStyle.bold:
return PhosphorIconsBold.crosshair;
case PhosphorIconsStyle.fill:
return PhosphorIconsFill.crosshair;
case PhosphorIconsStyle.duotone:
return PhosphorIconsDuotone.crosshair;
}
}