chartLine static method

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

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

Implementation

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