buildingApartment static method

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

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

Implementation

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