chatCenteredDots static method

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

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

Implementation

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