carProfile static method

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

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

Implementation

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