waves static method

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

regular: waves thin: waves light: waves bold: waves fill: waves duotone: waves

Implementation

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