thermometerCold static method

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

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

Implementation

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