DateTime constructor

DateTime({
  1. int year = 0,
  2. int month = 0,
  3. int day = 0,
  4. int hours = 0,
  5. int minutes = 0,
  6. int seconds = 0,
  7. int nanos = 0,
  8. Duration? utcOffset,
  9. TimeZone? timeZone,
})

Implementation

DateTime({
  this.year = 0,
  this.month = 0,
  this.day = 0,
  this.hours = 0,
  this.minutes = 0,
  this.seconds = 0,
  this.nanos = 0,
  this.utcOffset,
  this.timeZone,
}) : super(fullyQualifiedName);