batteryLow static method

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

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

Implementation

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