thermometerSimple static method

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

regular: thermometer-simple thin: thermometer-simple light: thermometer-simple bold: thermometer-simple fill: thermometer-simple duotone: thermometer-simple

Implementation

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