chatCenteredText static method

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

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

Implementation

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