policeCar static method

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

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

Implementation

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