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