SupaCountResponse<B extends SupaCore, R extends SupaRecord<B>> constructor

const SupaCountResponse<B extends SupaCore, R extends SupaRecord<B>>({
  1. required int count,
  2. required List<R> records,
})

A response from a SupaCountModifier containing the number of records in the response and the records themselves.

Implementation

const SupaCountResponse({
  required this.count,
  required this.records,
});