Thermometer constructor

const Thermometer({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. double topPosition = 0.1,
})

Implementation

const Thermometer({
  super.key,
  required this.width,
  required this.height,
  this.topPosition = 0.1,
});