pinterestLogo static method

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

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

Implementation

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