PostgrestResponse<T> constructor

const PostgrestResponse<T>({
  1. T? data,
  2. int? status,
  3. PostgrestError? error,
  4. int? count,
})

Implementation

const PostgrestResponse({
  this.data,
  this.status,
  this.error,
  this.count,
});