textStrikethrough static method

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

regular: text-strikethrough thin: text-strikethrough light: text-strikethrough bold: text-strikethrough fill: text-strikethrough duotone: text-strikethrough

Implementation

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