Point constructor

Point({
  1. Date? date,
  2. bool? truncated,
  3. int? day,
  4. int? hour,
  5. int? minute,
})

Implementation

Point({
  this.date,
  this.truncated,
  this.day,
  this.hour,
  this.minute,
});