batteryVerticalEmpty static method

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

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

Implementation

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