grainsSlash static method

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

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

Implementation

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