copyWith method
Implementation
WebApiModulesAgentOrderCopyTemplateRequest copyWith(
{List<String>? templateIds,
String? orderId,
String? recType,
String? moduleName}) {
return WebApiModulesAgentOrderCopyTemplateRequest(
templateIds: templateIds ?? this.templateIds,
orderId: orderId ?? this.orderId,
recType: recType ?? this.recType,
moduleName: moduleName ?? this.moduleName);
}