copyWith method
WebApiModulesAdministratorCustomFieldCustomField
copyWith({
- String? customFieldId,
- String? moduleName,
- String? fieldName,
- String? customTableName,
- String? customFieldName,
- String? fieldType,
- String? controlType,
- int? stringLength,
- int? floatDecimalDigits,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesAdministratorCustomFieldCustomField copyWith(
{String? customFieldId,
String? moduleName,
String? fieldName,
String? customTableName,
String? customFieldName,
String? fieldType,
String? controlType,
int? stringLength,
int? floatDecimalDigits,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesAdministratorCustomFieldCustomField(
customFieldId: customFieldId ?? this.customFieldId,
moduleName: moduleName ?? this.moduleName,
fieldName: fieldName ?? this.fieldName,
customTableName: customTableName ?? this.customTableName,
customFieldName: customFieldName ?? this.customFieldName,
fieldType: fieldType ?? this.fieldType,
controlType: controlType ?? this.controlType,
stringLength: stringLength ?? this.stringLength,
floatDecimalDigits: floatDecimalDigits ?? this.floatDecimalDigits,
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);
}