copyWith method
WebApiModulesHomeControlsInventoryVendorInventoryVendor
copyWith({
- String? inventoryVendorId,
- String? inventoryId,
- String? vendorId,
- String? vendor,
- String? contactName,
- String? contactOfficePhone,
- String? contactEmail,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesHomeControlsInventoryVendorInventoryVendor copyWith(
{String? inventoryVendorId,
String? inventoryId,
String? vendorId,
String? vendor,
String? contactName,
String? contactOfficePhone,
String? contactEmail,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesHomeControlsInventoryVendorInventoryVendor(
inventoryVendorId: inventoryVendorId ?? this.inventoryVendorId,
inventoryId: inventoryId ?? this.inventoryId,
vendorId: vendorId ?? this.vendorId,
vendor: vendor ?? this.vendor,
contactName: contactName ?? this.contactName,
contactOfficePhone: contactOfficePhone ?? this.contactOfficePhone,
contactEmail: contactEmail ?? this.contactEmail,
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);
}