garage static method

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

regular: garage thin: garage light: garage bold: garage fill: garage duotone: garage

Implementation

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