copyWithWrapped method
WebApiModulesAdministratorCustomFieldCustomField
copyWithWrapped({
- Wrapped<
String?> ? customFieldId, - Wrapped<
String?> ? moduleName, - Wrapped<
String?> ? fieldName, - Wrapped<
String?> ? customTableName, - Wrapped<
String?> ? customFieldName, - Wrapped<
String?> ? fieldType, - Wrapped<
String?> ? controlType, - Wrapped<
int?> ? stringLength, - Wrapped<
int?> ? floatDecimalDigits, - Wrapped<
String?> ? validationModule, - Wrapped<
String?> ? validationFieldId, - Wrapped<
String?> ? validationFieldName, - Wrapped<
String?> ? listFieldAllowedValues, - Wrapped<
String?> ? dateStamp, - Wrapped<
String?> ? auditNote, - Wrapped<
String?> ? recordTitle, - Wrapped? urlIdentifier,
- Wrapped<
List< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
FwStandardBusinessLogicFwBusinessLogic?> ? original, - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?> - Wrapped<
bool?> ? hasImport, - Wrapped<
bool?> ? hasDocuments, - Wrapped<
String?> ? createdByUserId, - Wrapped<
String?> ? createdByUserName, - Wrapped<
String?> ? createdDateTime, - Wrapped<
String?> ? modifiedByUserId, - Wrapped<
String?> ? modifiedByUserName, - Wrapped<
String?> ? modifiedDateTime,
Implementation
WebApiModulesAdministratorCustomFieldCustomField copyWithWrapped({
Wrapped<String?>? customFieldId,
Wrapped<String?>? moduleName,
Wrapped<String?>? fieldName,
Wrapped<String?>? customTableName,
Wrapped<String?>? customFieldName,
Wrapped<String?>? fieldType,
Wrapped<String?>? controlType,
Wrapped<int?>? stringLength,
Wrapped<int?>? floatDecimalDigits,
Wrapped<String?>? validationModule,
Wrapped<String?>? validationFieldId,
Wrapped<String?>? validationFieldName,
Wrapped<String?>? listFieldAllowedValues,
Wrapped<String?>? dateStamp,
Wrapped<String?>? auditNote,
Wrapped<String?>? recordTitle,
Wrapped<dynamic>? urlIdentifier,
Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
fields,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<FwStandardBusinessLogicFwBusinessLogic?>? original,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
Wrapped<bool?>? hasImport,
Wrapped<bool?>? hasDocuments,
Wrapped<String?>? createdByUserId,
Wrapped<String?>? createdByUserName,
Wrapped<String?>? createdDateTime,
Wrapped<String?>? modifiedByUserId,
Wrapped<String?>? modifiedByUserName,
Wrapped<String?>? modifiedDateTime,
}) {
return WebApiModulesAdministratorCustomFieldCustomField(
customFieldId: (customFieldId != null
? customFieldId.value
: this.customFieldId),
moduleName: (moduleName != null ? moduleName.value : this.moduleName),
fieldName: (fieldName != null ? fieldName.value : this.fieldName),
customTableName: (customTableName != null
? customTableName.value
: this.customTableName),
customFieldName: (customFieldName != null
? customFieldName.value
: this.customFieldName),
fieldType: (fieldType != null ? fieldType.value : this.fieldType),
controlType: (controlType != null ? controlType.value : this.controlType),
stringLength: (stringLength != null
? stringLength.value
: this.stringLength),
floatDecimalDigits: (floatDecimalDigits != null
? floatDecimalDigits.value
: this.floatDecimalDigits),
validationModule: (validationModule != null
? validationModule.value
: this.validationModule),
validationFieldId: (validationFieldId != null
? validationFieldId.value
: this.validationFieldId),
validationFieldName: (validationFieldName != null
? validationFieldName.value
: this.validationFieldName),
listFieldAllowedValues: (listFieldAllowedValues != null
? listFieldAllowedValues.value
: this.listFieldAllowedValues),
dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
auditNote: (auditNote != null ? auditNote.value : this.auditNote),
recordTitle: (recordTitle != null ? recordTitle.value : this.recordTitle),
urlIdentifier: (urlIdentifier != null
? urlIdentifier.value
: this.urlIdentifier),
fields: (fields != null ? fields.value : this.fields),
custom: (custom != null ? custom.value : this.custom),
defaultFieldAttributes: (defaultFieldAttributes != null
? defaultFieldAttributes.value
: this.defaultFieldAttributes),
original: (original != null ? original.value : this.original),
translation: (translation != null ? translation.value : this.translation),
hasImport: (hasImport != null ? hasImport.value : this.hasImport),
hasDocuments: (hasDocuments != null
? hasDocuments.value
: this.hasDocuments),
createdByUserId: (createdByUserId != null
? createdByUserId.value
: this.createdByUserId),
createdByUserName: (createdByUserName != null
? createdByUserName.value
: this.createdByUserName),
createdDateTime: (createdDateTime != null
? createdDateTime.value
: this.createdDateTime),
modifiedByUserId: (modifiedByUserId != null
? modifiedByUserId.value
: this.modifiedByUserId),
modifiedByUserName: (modifiedByUserName != null
? modifiedByUserName.value
: this.modifiedByUserName),
modifiedDateTime: (modifiedDateTime != null
? modifiedDateTime.value
: this.modifiedDateTime),
);
}