GoogleTypeDateTime constructor

GoogleTypeDateTime({
  1. int? day,
  2. int? hours,
  3. int? minutes,
  4. int? month,
  5. int? nanos,
  6. int? seconds,
  7. GoogleTypeTimeZone? timeZone,
  8. String? utcOffset,
  9. int? year,
})

Implementation

GoogleTypeDateTime({
  this.day,
  this.hours,
  this.minutes,
  this.month,
  this.nanos,
  this.seconds,
  this.timeZone,
  this.utcOffset,
  this.year,
});