copyWith method
Implementation
InstallerEveronAdditionV3Body copyWith(
{InstallerDTO? installer,
String? serialNumber,
enums.InstallationTypeDTO? installationType,
String? displayName,
enums.FuelTypeDTO? fuelType,
String? timezone}) {
return InstallerEveronAdditionV3Body(
installer: installer ?? this.installer,
serialNumber: serialNumber ?? this.serialNumber,
installationType: installationType ?? this.installationType,
displayName: displayName ?? this.displayName,
fuelType: fuelType ?? this.fuelType,
timezone: timezone ?? this.timezone);
}