copyWith method
Implementation
WebApiModulesAgentCustomerCustomerDocumentPostRequest copyWith(
{String? customerId,
String? documentTypeId,
String? description,
bool? attachToEmail,
bool? inactive,
bool? fileIsModified,
String? fileDataUrl,
String? filePath}) {
return WebApiModulesAgentCustomerCustomerDocumentPostRequest(
customerId: customerId ?? this.customerId,
documentTypeId: documentTypeId ?? this.documentTypeId,
description: description ?? this.description,
attachToEmail: attachToEmail ?? this.attachToEmail,
inactive: inactive ?? this.inactive,
fileIsModified: fileIsModified ?? this.fileIsModified,
fileDataUrl: fileDataUrl ?? this.fileDataUrl,
filePath: filePath ?? this.filePath);
}