chatCenteredSlash static method

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

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

Implementation

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