get_current_time_nanoseconds function

BigInt get_current_time_nanoseconds()

Implementation

BigInt get_current_time_nanoseconds() {
    return BigInt.from(DateTime.now().millisecondsSinceEpoch) * BigInt.from(1000000);
}