ranking static method

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

regular: ranking thin: ranking light: ranking bold: ranking fill: ranking duotone: ranking

Implementation

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