copyWith method

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

Implementation

Engine copyWith({
  String? version,
  DateTime? buildDate,
  DateTime? graphDate,
}) =>
    Engine(
      version: version ?? this.version,
      buildDate: buildDate ?? this.buildDate,
      graphDate: graphDate ?? this.graphDate,
    );