chatText static method

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

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

Implementation

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