Engine constructor

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

Implementation

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