presentationChart static method

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

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

Implementation

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