building static method

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

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

Implementation

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