readDoubleWithRectification method

num readDoubleWithRectification()

Implementation

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