behanceLogo static method

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

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

Implementation

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