warning static method

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

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

Implementation

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