truck static method

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

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

Implementation

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