textTSlash static method

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

regular: text-t-slash thin: text-t-slash light: text-t-slash bold: text-t-slash fill: text-t-slash duotone: text-t-slash

Implementation

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