pixLogo static method

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

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

Implementation

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