FdcDataLoadResult constructor

const FdcDataLoadResult({
  1. required List<Map<String, Object?>> rows,
  2. int? totalCount,
  3. List<FdcFieldDef>? fields,
  4. List<int>? internalRowIds,
  5. int? internalNextRowId,
  6. Object? previousPageCursor,
  7. Object? nextPageCursor,
})

Creates a FdcDataLoadResult.

Implementation

const FdcDataLoadResult({
  required this.rows,
  this.totalCount,
  this.fields,
  this.internalRowIds,
  this.internalNextRowId,
  this.previousPageCursor,
  this.nextPageCursor,
});