SnapError constructor

const SnapError({
  1. required dynamic error,
  2. StackTrace? stackTrace,
  3. required VoidCallback refresher,
})

The error representation

Implementation

const SnapError({
  required this.error,
  this.stackTrace,
  required this.refresher,
});