Temperature constructor

Temperature(
  1. num value,
  2. String unitSymbol
)

Constructs Temperature with the value and the unit

Implementation

Temperature(num value, String unitSymbol)
    : super(value, unitSymbol, Th.dimension);