linkedinLogo static method

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

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

Implementation

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