batteryWarningVertical static method

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

regular: battery-warning-vertical thin: battery-warning-vertical light: battery-warning-vertical bold: battery-warning-vertical fill: battery-warning-vertical duotone: battery-warning-vertical

Implementation

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