trendDown static method

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

regular: trend-down thin: trend-down light: trend-down bold: trend-down fill: trend-down duotone: trend-down

Implementation

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