lightning static method

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

regular: lightning thin: lightning light: lightning bold: lightning fill: lightning duotone: lightning

Implementation

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