fromJSON method
Implementation
@override
Observable<double>? fromJSON(dynamic jsonValue,
DeserializationContext context) =>
(jsonValue is String || jsonValue is double)
? Observable<double>(
numberConverter.fromJSON(jsonValue, context) as double)
: jsonValue;