listDashes static method

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

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

Implementation

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