chatTeardropDots static method

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

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

Implementation

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