carSimple static method

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

regular: car-simple thin: car-simple light: car-simple bold: car-simple fill: car-simple duotone: car-simple

Implementation

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