listBullets static method

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

regular: list-bullets thin: list-bullets light: list-bullets bold: list-bullets fill: list-bullets duotone: list-bullets

Implementation

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