sortDescending static method

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

regular: sort-descending thin: sort-descending light: sort-descending bold: sort-descending fill: sort-descending duotone: sort-descending

Implementation

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