paypalLogo static method
regular:
thin:
light:
bold:
fill:
duotone:
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;
}
}