fahrenheit property

double? fahrenheit

Convert temperature to Fahrenheit

Implementation

double? get fahrenheit =>
    _kelvin != null ? _kelvin! * (9 / 5) - 459.67 : null;