timeUnixNano property
- @TagNumber.new(1)
time_unix_nano is the time when the event occurred. Value is UNIX Epoch time in nanoseconds since 00:00:00 UTC on 1 January 1970. Value of 0 indicates unknown or missing timestamp.
Implementation
@$pb.TagNumber(1)
$fixnum.Int64 get timeUnixNano => $_getI64(0);
- @TagNumber.new(1)
Implementation
@$pb.TagNumber(1)
set timeUnixNano($fixnum.Int64 v) {
$_setInt64(0, v);
}