RustResponse constructor

const RustResponse({
  1. required bool successful,
  2. Uint8List? message,
  3. Uint8List? blob,
})

Implementation

const RustResponse({
  required this.successful,
  this.message,
  this.blob,
});