shareFile function

Future<void> shareFile(
  1. Uri uri
)

Share file at the given url.

Note: Currently this function is implemented only on android. There is no alternative on other platforms yet.

Implementation

Future<void> shareFile(Uri uri) =>
    _channel.invokeMethod('shareFile', uri.toString());