batteryCharging static method

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

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

Implementation

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