fireSimple static method

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

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

Implementation

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