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