radioactive static method

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

regular: radioactive thin: radioactive light: radioactive bold: radioactive fill: radioactive duotone: radioactive

Implementation

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