ZapError constructor

const ZapError({
  1. required String id,
  2. required String ts,
  3. required String code,
  4. required String message,
  5. String? inReplyTo,
  6. List<String>? details,
})

Implementation

const ZapError({
  required super.id,
  required super.ts,
  required this.code,
  required this.message,
  this.inReplyTo,
  this.details,
});