batteryChargingVertical static method

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

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

Implementation

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