projectorScreen static method

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

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

Implementation

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