stripeLogo static method

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

regular: stripe-logo thin: stripe-logo light: stripe-logo bold: stripe-logo fill: stripe-logo duotone: stripe-logo

Implementation

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