copyWith method
Implementation
SetGeneratorMaintenanceNoteRequestModel copyWith(
{int? deviceId, String? dealerEmail, String? maintenanceNote}) {
return SetGeneratorMaintenanceNoteRequestModel(
deviceId: deviceId ?? this.deviceId,
dealerEmail: dealerEmail ?? this.dealerEmail,
maintenanceNote: maintenanceNote ?? this.maintenanceNote);
}