fireTruck static method

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

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

Implementation

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