SentryAttachment.fromUint8List constructor
SentryAttachment.fromUint8List(})
Creates an SentryAttachment from a Uint8List
Implementation
SentryAttachment.fromUint8List(
Uint8List bytes,
String fileName, {
String? contentType,
String? attachmentType,
bool? addToTransactions,
}) : this.fromLoader(
attachmentType: attachmentType,
loader: () => bytes,
filename: fileName,
contentType: contentType,
addToTransactions: addToTransactions,
);