Engine constructor

Engine({
  1. String? version,
  2. DateTime? buildDate,
  3. DateTime? graphDate,
})

Implementation

Engine({
  this.version,
  this.buildDate,
  this.graphDate,
});