batteryHigh static method

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

regular: battery-high thin: battery-high light: battery-high bold: battery-high fill: battery-high duotone: battery-high

Implementation

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