AutoCacheException constructor

AutoCacheException({
  1. required String message,
  2. required String code,
  3. required StackTrace stackTrace,
})

Implementation

AutoCacheException({
  required super.message,
  required super.code,
  required super.stackTrace,
}) {
  LogService.instance.logException(this);
}