thermometerHot static method

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

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

Implementation

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