copyWith method
WebApiModulesAdministratorSystemAccessDepartmentAccessDepartmentAccess
copyWith({
- String? departmentId,
- String? department,
- String? departmentCode,
- String? divisionId,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesAdministratorSystemAccessDepartmentAccessDepartmentAccess
copyWith(
{String? departmentId,
String? department,
String? departmentCode,
String? divisionId,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesAdministratorSystemAccessDepartmentAccessDepartmentAccess(
departmentId: departmentId ?? this.departmentId,
department: department ?? this.department,
departmentCode: departmentCode ?? this.departmentCode,
divisionId: divisionId ?? this.divisionId,
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);
}