warningOctagon static method

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

regular: warning-octagon thin: warning-octagon light: warning-octagon bold: warning-octagon fill: warning-octagon duotone: warning-octagon

Implementation

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