seconds property

  1. @TagNumber.new(6)
int get seconds

Required. Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

Implementation

@$pb.TagNumber(6)
$core.int get seconds => $_getIZ(5);
  1. @TagNumber.new(6)
set seconds (int v)

Implementation

@$pb.TagNumber(6)
set seconds($core.int v) {
  $_setSignedInt32(5, v);
}