mastodonLogo static method

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

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

Implementation

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