chartLineDown static method

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

regular: chart-line-down thin: chart-line-down light: chart-line-down bold: chart-line-down fill: chart-line-down duotone: chart-line-down

Implementation

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