AggregateExceptions constructor

AggregateExceptions({
  1. required List<Exception> innerExceptions,
  2. required String message,
})

Implementation

AggregateExceptions({
  required this.innerExceptions,
  required this.message,
});