copyWith method
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,
})
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}) {
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);
}