fediverseLogo static method

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

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

Implementation

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