AppCenterException constructor
const
AppCenterException({
- String plugin = "core",
- String? message,
- String code = "unknown",
- StackTrace? stackTrace,
A generic class which provides exceptions for AppCenter.
try {
...
} catch (e) {
print(e.toString());
}
Implementation
const AppCenterException({
this.plugin = "core",
this.message,
this.code = "unknown",
this.stackTrace,
});