nanosecondOfSecond property

int nanosecondOfSecond

Gets the microsecond of this offset date and time within the day, in the range 0 to 86,399,999,999 inclusive. Gets the nanosecond of this offset date and time within the second, in the range 0 to 999,999,999 inclusive.

Implementation

//int get microsecondOfDay => _nanosecondOfDay ~/ TimeConstants.nanosecondsPerMicrosecond;

/// Gets the nanosecond of this offset date and time within the second, in the range 0 to 999,999,999 inclusive.
int get nanosecondOfSecond => localDateTime.nanosecondOfSecond;