copyWith method
- DeviceHostDTO? deviceHost,
- bool? isDryRun,
- String? serialNumber,
- String? businessPartnerNo,
- String? homeownerEmail,
Implementation
DeviceMigrationRequestV3Body copyWith(
{enums.DeviceHostDTO? deviceHost,
bool? isDryRun,
String? serialNumber,
String? businessPartnerNo,
String? homeownerEmail}) {
return DeviceMigrationRequestV3Body(
deviceHost: deviceHost ?? this.deviceHost,
isDryRun: isDryRun ?? this.isDryRun,
serialNumber: serialNumber ?? this.serialNumber,
businessPartnerNo: businessPartnerNo ?? this.businessPartnerNo,
homeownerEmail: homeownerEmail ?? this.homeownerEmail);
}