skypeLogo static method

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

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

Implementation

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