DriftWrappedException constructor

DriftWrappedException({
  1. required String message,
  2. Object? cause,
  3. StackTrace? trace,
})

Creates a new DriftWrappedException to provide additional details about an underlying error from the database.

Implementation

DriftWrappedException({required this.message, this.cause, this.trace});