lightningA static method

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

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

Implementation

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