toInt64Ext property
int?
get
toInt64Ext
Implementation
int? get toInt64Ext {
final pres = calloc.call<Int64>(sizeOf<Int64>());
final ret = JS_ToInt64Ext(_ctx.ref, pres, _ref.ref);
if (ret != 0) return null;
try {
return pres.value;
} finally {
calloc.free(pres);
}
}