BaseError constructor
const
BaseError({
- required String message,
- StackTrace? stackTrace,
Base class for all errors in the app.
Implementation
const BaseError({
required this.message,
this.stackTrace,
});