chargingStation static method

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

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

Implementation

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