BlobData constructor

BlobData({
  1. required Uint8List data,
  2. Uint8List? commitment,
  3. Uint8List? proof,
  4. Uint8List? versionedHash,
})

Implementation

BlobData({
  required this.data,
  this.commitment,
  this.proof,
  this.versionedHash,
});