dribbbleLogo static method

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

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

Implementation

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