convertJsonValue method
Implementation
@override
dynamic convertJsonValue(dynamic jsonValue) {
if (jsonValue is int) return jsonValue.toDouble();
if (jsonValue is String) return double.parse(jsonValue);
return jsonValue as double;
}
@override
dynamic convertJsonValue(dynamic jsonValue) {
if (jsonValue is int) return jsonValue.toDouble();
if (jsonValue is String) return double.parse(jsonValue);
return jsonValue as double;
}