projectorScreenChart static method

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

regular: projector-screen-chart thin: projector-screen-chart light: projector-screen-chart bold: projector-screen-chart fill: projector-screen-chart duotone: projector-screen-chart

Implementation

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