dropSlash property

AppIconData get dropSlash

regular: drop-slash thin: drop-slash light: drop-slash bold: drop-slash fill: drop-slash duotone: drop-slash

Implementation

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