redditLogo static method

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

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

Implementation

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