Date constructor

Date({
  1. String? extra,
  2. int? client_id,
  3. int32? day,
  4. int32? month,
  5. int32? year,
})

Implementation

Date({
  super.extra,
  super.client_id,
  this.day,
  this.month,
  this.year,
});