chat static method

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

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

Implementation

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