ReplyError constructor

ReplyError({
  1. required Uint8List payloadBytes,
  2. required String payload,
  3. String? encoding,
})

Creates a ReplyError with the given fields.

Implementation

ReplyError({
  required this.payloadBytes,
  required this.payload,
  this.encoding,
});