warehouse static method

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

regular: warehouse thin: warehouse light: warehouse bold: warehouse fill: warehouse duotone: warehouse

Implementation

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