faders static method

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

regular: faders thin: faders light: faders bold: faders fill: faders duotone: faders

Implementation

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