chatSlash static method

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

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

Implementation

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