copyWith method
FwStandardSqlServerFwJsonDataTable
copyWith({
- Map<
String, dynamic> ? columnIndex, - Map<
String, dynamic> ? totals, - List<
FwStandardSqlServerFwJsonDataTableColumn> ? columns, - List<
List< ? rows,Object?> > - int? pageNo,
- int? pageSize,
- int? totalPages,
- int? totalRows,
- List<
String> ? dateFields, - Map<
String, dynamic> ? columnNameByIndex, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
FwStandardSqlServerFwJsonDataTable copyWith(
{Map<String, dynamic>? columnIndex,
Map<String, dynamic>? totals,
List<FwStandardSqlServerFwJsonDataTableColumn>? columns,
List<List<Object?>>? rows,
int? pageNo,
int? pageSize,
int? totalPages,
int? totalRows,
List<String>? dateFields,
Map<String, dynamic>? columnNameByIndex,
List<FwStandardDataFwTranslatedValue>? translation}) {
return FwStandardSqlServerFwJsonDataTable(
columnIndex: columnIndex ?? this.columnIndex,
totals: totals ?? this.totals,
columns: columns ?? this.columns,
rows: rows ?? this.rows,
pageNo: pageNo ?? this.pageNo,
pageSize: pageSize ?? this.pageSize,
totalPages: totalPages ?? this.totalPages,
totalRows: totalRows ?? this.totalRows,
dateFields: dateFields ?? this.dateFields,
columnNameByIndex: columnNameByIndex ?? this.columnNameByIndex,
translation: translation ?? this.translation);
}