clearFileAttachments static method

Future<void> clearFileAttachments()

Clears all Uris of the attached files. The URIs which added via {@link Instabug#addFileAttachment} API not the physical files.

Implementation

static Future<void> clearFileAttachments() async {
  await _channel.invokeMethod<Object>('clearFileAttachments');
}