TimeVal constructor

TimeVal({
  1. int tv_sec = 0,
  2. int tv_usec = 0,
})

Creates a new TimeVal structure.

Implementation

TimeVal({
  this.tv_sec = 0,
  this.tv_usec = 0,
});