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