copyWith method

Implementation

FwStandardModelsGetResponseFwStandardGridsAppDocumentAppDocumentGetManyResponse
    copyWith(
        {List<FwStandardGridsAppDocumentAppDocumentGetManyResponse>? items,
        int? pageNo,
        int? pageSize,
        int? totalRows,
        String? sort}) {
  return FwStandardModelsGetResponseFwStandardGridsAppDocumentAppDocumentGetManyResponse(
      items: items ?? this.items,
      pageNo: pageNo ?? this.pageNo,
      pageSize: pageSize ?? this.pageSize,
      totalRows: totalRows ?? this.totalRows,
      sort: sort ?? this.sort);
}