officeChair static method

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

regular: office-chair thin: office-chair light: office-chair bold: office-chair fill: office-chair duotone: office-chair

Implementation

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