buildings static method

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

regular: buildings thin: buildings light: buildings bold: buildings fill: buildings duotone: buildings

Implementation

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