buildingApartment static method
regular:
thin:
light:
bold:
fill:
duotone:
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;
}
}