flame static method

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

regular: flame thin: flame light: flame bold: flame fill: flame duotone: flame

Implementation

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