shieldCheckered static method

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

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

Implementation

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