solarPanel static method

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

regular: solar-panel thin: solar-panel light: solar-panel bold: solar-panel fill: solar-panel duotone: solar-panel

Implementation

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