webhooksLogo static method

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

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

Implementation

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