barricade static method

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

regular: barricade thin: barricade light: barricade bold: barricade fill: barricade duotone: barricade

Implementation

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