faders property

AppIconData get faders

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

Implementation

static AppIconData get faders {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.faders;
    case AppIconsStyle.thin:
      return AppIconsThin.faders;
    case AppIconsStyle.light:
      return AppIconsLight.faders;
    case AppIconsStyle.bold:
      return AppIconsBold.faders;
    case AppIconsStyle.fill:
      return AppIconsFill.faders;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.faders;
  }
}