fire static method

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

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

Implementation

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