DateModel constructor

DateModel(
  1. int year,
  2. int month,
  3. int day,
  4. int hour,
  5. int minute,
  6. int second,
)

Implementation

DateModel(
    this.year, this.month, this.day, this.hour, this.minute, this.second);