buildingOffice static method

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

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

Implementation

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