synagogue static method

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

regular: synagogue thin: synagogue light: synagogue bold: synagogue fill: synagogue duotone: synagogue

Implementation

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