celsius property

double? celsius

Convert temperature to Celsius

Implementation

double? get celsius => _kelvin != null ? _kelvin! - 273.15 : null;