ZipRequestError constructor

ZipRequestError({
  1. required int index,
  2. String? tag,
  3. required dynamic error,
  4. StackTrace? stackTrace,
})

Implementation

ZipRequestError({
  required this.index,
  this.tag,
  required this.error,
  this.stackTrace,
});