shieldWarning static method

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

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

Implementation

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