chatDots static method

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

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

Implementation

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