copyWith method

WebApiModulesAdministratorCustomFieldCustomField copyWith({
  1. String? customFieldId,
  2. String? moduleName,
  3. String? fieldName,
  4. String? customTableName,
  5. String? customFieldName,
  6. String? fieldType,
  7. String? controlType,
  8. int? stringLength,
  9. int? floatDecimalDigits,
  10. String? dateStamp,
  11. String? auditNote,
  12. String? recordTitle,
  13. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  14. List<FwStandardDataFwCustomValue>? custom,
  15. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  16. 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);
}