ErrorMessage constructor

const ErrorMessage({
  1. required String? source,
  2. required String message,
  3. dynamic details,
  4. StackTrace? stackTrace,
})

Implementation

const ErrorMessage({
  required this.source,
  required this.message,
  this.details,
  this.stackTrace,
});