batteryVerticalFull static method

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

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

Implementation

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