pencilSlash static method

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

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

Implementation

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