plugCharging static method

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

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

Implementation

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