paypalLogo static method

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

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

Implementation

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