ErrorMessage constructor
const
ErrorMessage({
- required String? source,
- required String message,
- dynamic details,
- StackTrace? stackTrace,
Implementation
const ErrorMessage({
required this.source,
required this.message,
this.details,
this.stackTrace,
});