chatCentered static method

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

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

Implementation

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