lightbulb static method

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

regular: lightbulb thin: lightbulb light: lightbulb bold: lightbulb fill: lightbulb duotone: lightbulb

Implementation

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