biohazard static method

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

regular: biohazard thin: biohazard light: biohazard bold: biohazard fill: biohazard duotone: biohazard

Implementation

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