addFileAttachmentWithData static method

Future<void> addFileAttachmentWithData(
  1. Uint8List data,
  2. String fileName
)

Add file to be attached to the bug report. data of the file fileName of the file

Implementation

static Future<void> addFileAttachmentWithData(
  Uint8List data,
  String fileName,
) async {
  return _host.addFileAttachmentWithData(data, fileName);
}