readDoubleWithRectification method
Implementation
num readDoubleWithRectification() {
var doubleValue = reader.getDouble();
var longValue = doubleValue.toInt();
if (doubleValue == longValue) {
return longValue;
}
return doubleValue;
}
num readDoubleWithRectification() {
var doubleValue = reader.getDouble();
var longValue = doubleValue.toInt();
if (doubleValue == longValue) {
return longValue;
}
return doubleValue;
}