flashlight property

AppIconData get flashlight

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

Implementation

static AppIconData get flashlight {
  switch (AppIcons.defaultStyle) {
    case AppIconsStyle.regular:
      return AppIconsRegular.flashlight;
    case AppIconsStyle.thin:
      return AppIconsThin.flashlight;
    case AppIconsStyle.light:
      return AppIconsLight.flashlight;
    case AppIconsStyle.bold:
      return AppIconsBold.flashlight;
    case AppIconsStyle.fill:
      return AppIconsFill.flashlight;
    case AppIconsStyle.duotone:
      return AppIconsDuotone.flashlight;
  }
}