BatchResultErrorEntry constructor

BatchResultErrorEntry({
  1. required String code,
  2. required String id,
  3. required bool senderFault,
  4. String? message,
})

Implementation

BatchResultErrorEntry({
  required this.code,
  required this.id,
  required this.senderFault,
  this.message,
});