copyWith method
FwStandardModelsFwQueryResponseWebApiModulesSettingsDepartmentLocationDepartmentLocationLogic
copyWith({})
Implementation
FwStandardModelsFwQueryResponseWebApiModulesSettingsDepartmentLocationDepartmentLocationLogic
copyWith({
List<WebApiModulesSettingsDepartmentLocationDepartmentLocation>? items,
int? pageNo,
int? pageSize,
int? totalItems,
String? sort,
}) {
return FwStandardModelsFwQueryResponseWebApiModulesSettingsDepartmentLocationDepartmentLocationLogic(
items: items ?? this.items,
pageNo: pageNo ?? this.pageNo,
pageSize: pageSize ?? this.pageSize,
totalItems: totalItems ?? this.totalItems,
sort: sort ?? this.sort,
);
}