RemoteDataSourceDetails<T> constructor

RemoteDataSourceDetails<T>(
  1. int totalRows,
  2. List<T> rows, {
  3. int? filteredRows,
})

Implementation

RemoteDataSourceDetails(
  this.totalRows,
  this.rows, {
  this.filteredRows,
});