PostgrestError constructor

PostgrestError({
  1. required String message,
  2. String? code,
  3. dynamic details,
  4. String? hint,
})

Implementation

PostgrestError({
  required this.message,
  this.code,
  this.details,
  this.hint,
});