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