chatCircleSlash static method

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

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

Implementation

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