chartBarHorizontal static method

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

regular: chart-bar-horizontal thin: chart-bar-horizontal light: chart-bar-horizontal bold: chart-bar-horizontal fill: chart-bar-horizontal duotone: chart-bar-horizontal

Implementation

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