waveSine static method

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

regular: wave-sine thin: wave-sine light: wave-sine bold: wave-sine fill: wave-sine duotone: wave-sine

Implementation

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