copyWithWrapped method
FwStandardModelsBrowseRequest
copyWithWrapped({
- Wrapped? miscfields,
- Wrapped<
String?> ? module, - Wrapped? options,
- Wrapped<
String?> ? orderby, - Wrapped<
String?> ? orderbydirection, - Wrapped<
int?> ? top, - Wrapped<
int?> ? pageno, - Wrapped<
int?> ? pagesize, - Wrapped<
List< ? searchfieldoperators,String> ?> - Wrapped<
List< ? searchfields,String> ?> - Wrapped<
List< ? searchfieldvalues,String> ?> - Wrapped<
List< ? searchfieldtypes,String> ?> - Wrapped<
List< ? searchseparators,String> ?> - Wrapped<
List< ? searchcondition,String> ?> - Wrapped<
List< ? searchconjunctions,String> ?> - Wrapped<
List< ? searchgroupings,int> ?> - Wrapped? uniqueids,
- Wrapped? boundids,
- Wrapped<
Map< ? filterfields,String, dynamic> ?> - Wrapped<
String?> ? activeview, - Wrapped<
bool?> ? emptyobject, - Wrapped<
bool?> ? forexcel, - Wrapped<
bool?> ? includeallcolumns, - Wrapped<
List< ? fields,FwStandardModelsCheckBoxListItem> ?> - Wrapped<
List< ? totalfields,String> ?> - Wrapped<
Map< ? activeviewfields,String, dynamic> ?>
Implementation
FwStandardModelsBrowseRequest copyWithWrapped(
{Wrapped<dynamic>? miscfields,
Wrapped<String?>? module,
Wrapped<dynamic>? options,
Wrapped<String?>? orderby,
Wrapped<String?>? orderbydirection,
Wrapped<int?>? top,
Wrapped<int?>? pageno,
Wrapped<int?>? pagesize,
Wrapped<List<String>?>? searchfieldoperators,
Wrapped<List<String>?>? searchfields,
Wrapped<List<String>?>? searchfieldvalues,
Wrapped<List<String>?>? searchfieldtypes,
Wrapped<List<String>?>? searchseparators,
Wrapped<List<String>?>? searchcondition,
Wrapped<List<String>?>? searchconjunctions,
Wrapped<List<int>?>? searchgroupings,
Wrapped<dynamic>? uniqueids,
Wrapped<dynamic>? boundids,
Wrapped<Map<String, dynamic>?>? filterfields,
Wrapped<String?>? activeview,
Wrapped<bool?>? emptyobject,
Wrapped<bool?>? forexcel,
Wrapped<bool?>? includeallcolumns,
Wrapped<List<FwStandardModelsCheckBoxListItem>?>? fields,
Wrapped<List<String>?>? totalfields,
Wrapped<Map<String, dynamic>?>? activeviewfields}) {
return FwStandardModelsBrowseRequest(
miscfields: (miscfields != null ? miscfields.value : this.miscfields),
module: (module != null ? module.value : this.module),
options: (options != null ? options.value : this.options),
orderby: (orderby != null ? orderby.value : this.orderby),
orderbydirection: (orderbydirection != null
? orderbydirection.value
: this.orderbydirection),
top: (top != null ? top.value : this.top),
pageno: (pageno != null ? pageno.value : this.pageno),
pagesize: (pagesize != null ? pagesize.value : this.pagesize),
searchfieldoperators: (searchfieldoperators != null
? searchfieldoperators.value
: this.searchfieldoperators),
searchfields:
(searchfields != null ? searchfields.value : this.searchfields),
searchfieldvalues: (searchfieldvalues != null
? searchfieldvalues.value
: this.searchfieldvalues),
searchfieldtypes: (searchfieldtypes != null
? searchfieldtypes.value
: this.searchfieldtypes),
searchseparators: (searchseparators != null
? searchseparators.value
: this.searchseparators),
searchcondition: (searchcondition != null
? searchcondition.value
: this.searchcondition),
searchconjunctions: (searchconjunctions != null
? searchconjunctions.value
: this.searchconjunctions),
searchgroupings: (searchgroupings != null
? searchgroupings.value
: this.searchgroupings),
uniqueids: (uniqueids != null ? uniqueids.value : this.uniqueids),
boundids: (boundids != null ? boundids.value : this.boundids),
filterfields:
(filterfields != null ? filterfields.value : this.filterfields),
activeview: (activeview != null ? activeview.value : this.activeview),
emptyobject:
(emptyobject != null ? emptyobject.value : this.emptyobject),
forexcel: (forexcel != null ? forexcel.value : this.forexcel),
includeallcolumns: (includeallcolumns != null
? includeallcolumns.value
: this.includeallcolumns),
fields: (fields != null ? fields.value : this.fields),
totalfields:
(totalfields != null ? totalfields.value : this.totalfields),
activeviewfields: (activeviewfields != null
? activeviewfields.value
: this.activeviewfields));
}