storefront static method

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

regular: storefront thin: storefront light: storefront bold: storefront fill: storefront duotone: storefront

Implementation

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