CombinedImageDecodeException constructor

const CombinedImageDecodeException({
  1. required Object rasterError,
  2. required StackTrace rasterStack,
  3. required Object vectorError,
  4. required StackTrace vectorStack,
})

Implementation

const CombinedImageDecodeException({
  required this.rasterError,
  required this.rasterStack,
  required this.vectorError,
  required this.vectorStack,
});