dropSlash static method

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

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

Implementation

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