fireExtinguisher static method

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

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

Implementation

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