copyWith method
WebApiModulesHomeControlsDealShipperDealShipper
copyWith({
- String? dealShipperId,
- String? dealId,
- String? vendorId,
- String? carrierId,
- String? carrier,
- String? shipperAcct,
- bool? isPrimary,
- String? shipViaId,
- String? shipVia,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesHomeControlsDealShipperDealShipper copyWith(
{String? dealShipperId,
String? dealId,
String? vendorId,
String? carrierId,
String? carrier,
String? shipperAcct,
bool? isPrimary,
String? shipViaId,
String? shipVia,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesHomeControlsDealShipperDealShipper(
dealShipperId: dealShipperId ?? this.dealShipperId,
dealId: dealId ?? this.dealId,
vendorId: vendorId ?? this.vendorId,
carrierId: carrierId ?? this.carrierId,
carrier: carrier ?? this.carrier,
shipperAcct: shipperAcct ?? this.shipperAcct,
isPrimary: isPrimary ?? this.isPrimary,
shipViaId: shipViaId ?? this.shipViaId,
shipVia: shipVia ?? this.shipVia,
dateStamp: dateStamp ?? this.dateStamp,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}