steeringWheel static method

PhosphorIconData steeringWheel([
  1. PhosphorIconsStyle style = PhosphorIconsStyle.regular
])

regular: steering-wheel thin: steering-wheel light: steering-wheel bold: steering-wheel fill: steering-wheel duotone: steering-wheel

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;
  }
}