doubleToInt64 function

int doubleToInt64(
  1. double value
)

Implementation

int doubleToInt64(double value) {
  var byteData = ByteData(8);
  byteData.setFloat64(0, value);
  return byteData.getInt64(0);
}