webhooksLogo static method
regular:
thin:
light:
bold:
fill:
duotone:
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;
}
}