copyWithWrapped method
Implementation
FwStandardModelsGetResponseFwStandardGridsAppDocumentAppDocumentGetManyResponse
copyWithWrapped(
{Wrapped<List<FwStandardGridsAppDocumentAppDocumentGetManyResponse>?>?
items,
Wrapped<int?>? pageNo,
Wrapped<int?>? pageSize,
Wrapped<int?>? totalRows,
Wrapped<String?>? sort}) {
return FwStandardModelsGetResponseFwStandardGridsAppDocumentAppDocumentGetManyResponse(
items: (items != null ? items.value : this.items),
pageNo: (pageNo != null ? pageNo.value : this.pageNo),
pageSize: (pageSize != null ? pageSize.value : this.pageSize),
totalRows: (totalRows != null ? totalRows.value : this.totalRows),
sort: (sort != null ? sort.value : this.sort));
}