AppCenterException constructor

const AppCenterException({
  1. String plugin = "core",
  2. String? message,
  3. String code = "unknown",
  4. 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,
});