chartLine property

AppIconData get chartLine

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

Implementation

static AppIconData get chartLine {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.chartLine;
    case AppIconsStyle.thin:
      return AppIconsThin.chartLine;
    case AppIconsStyle.light:
      return AppIconsLight.chartLine;
    case AppIconsStyle.bold:
      return AppIconsBold.chartLine;
    case AppIconsStyle.fill:
      return AppIconsFill.chartLine;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.chartLine;
  }
}