city static method

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

regular: city thin: city light: city bold: city fill: city duotone: city

Implementation

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