PostgrestException constructor

const PostgrestException({
  1. required String message,
  2. String? code,
  3. Object? details,
  4. String? hint,
})

Implementation

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