get24hChangeIn method

double? get24hChangeIn(
  1. String vsCurrency
)

Returns the 24-hour change in the specified vsCurrency.

The vsCurrency parameter is the currency in which the 24-hour change is requested.

Implementation

double? get24hChangeIn(String vsCurrency) {
  return Convert.toDoubleN(_json['${vsCurrency.toLowerCase()}_24h_change']);
}