xLogo static method

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

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

Implementation

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