nanos property

  1. @TagNumber(2)
int nanos

Non-negative fractions of a second at nanosecond resolution. Negative second values with fractions must still have non-negative nanos values that count forward in time. Must be from 0 to 999,999,999 inclusive.

Implementation

@$pb.TagNumber(2)
$core.int get nanos => $_getIZ(1);
  1. @TagNumber(2)
void nanos=(int v)

Implementation

@$pb.TagNumber(2)
set nanos($core.int v) {
  $_setSignedInt32(1, v);
}