flashlight static method

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

regular: flashlight thin: flashlight light: flashlight bold: flashlight fill: flashlight duotone: flashlight

Implementation

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