selectionSlash static method

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

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

Implementation

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