getInt64 method Null safety

int getInt64(
  1. Pointer<Void> pointer,
  2. int field
)

Implementation

int getInt64(Pointer<Void> pointer, int field) {
  Pointer<Pointer<Void>> exception = _getException();
  final result = _getInt64(pointer, field, exception);
  checkException(exception, _dll_handle);
  return result;
}