Tm constructor

Tm({
  1. int tm_sec = 0,
  2. int tm_min = 0,
  3. int tm_hour = 0,
  4. int tm_mday = 1,
  5. int tm_mon = 0,
  6. int tm_year = 0,
  7. int tm_wday = 0,
  8. int tm_yday = 0,
  9. int tm_isdst = -1,
})

Creates a new Tm structure.

Implementation

Tm({
  this.tm_sec = 0,
  this.tm_min = 0,
  this.tm_hour = 0,
  this.tm_mday = 1,
  this.tm_mon = 0,
  this.tm_year = 0,
  this.tm_wday = 0,
  this.tm_yday = 0,
  this.tm_isdst = -1,
});