truckTrailer static method

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

regular: truck-trailer thin: truck-trailer light: truck-trailer bold: truck-trailer fill: truck-trailer duotone: truck-trailer

Implementation

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