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