nuclearPlant static method

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

regular: nuclear-plant thin: nuclear-plant light: nuclear-plant bold: nuclear-plant fill: nuclear-plant duotone: nuclear-plant

Implementation

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