tumblrLogo static method

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

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

Implementation

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