pencilSimpleSlash static method

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

regular: pencil-simple-slash thin: pencil-simple-slash light: pencil-simple-slash bold: pencil-simple-slash fill: pencil-simple-slash duotone: pencil-simple-slash

Implementation

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