chatTeardropSlash static method

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

regular: chat-teardrop-slash thin: chat-teardrop-slash light: chat-teardrop-slash bold: chat-teardrop-slash fill: chat-teardrop-slash duotone: chat-teardrop-slash

Implementation

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