batteryWarning static method

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

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

Implementation

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