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