seconds property

int seconds

Gets the seconds component of the time represented by this instance.

Implementation

int get seconds {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_TimeOnly_getSeconds(
      _handle,
      errorHandler,
    );
  });
}