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