linuxLogo static method

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

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

Implementation

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