toYmdHms method

String toYmdHms()

Implementation

String toYmdHms() {
  return '${toYmd()} ${_hour < 10 ? '0' : ''}$_hour:${_minute < 10 ? '0' : ''}$_minute:${_second < 10 ? '0' : ''}$_second';
}