chatCircleDots static method

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

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

Implementation

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