wall static method

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

regular: wall thin: wall light: wall bold: wall fill: wall duotone: wall

Implementation

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