getTemporaryLink static method

Future<String?> getTemporaryLink(
  1. String path
)

get temporary link url for file

returns url for accessing dropbox file.

Implementation

static Future<String?> getTemporaryLink(String path) async {
  return await _channel.invokeMethod('getTemporaryLink', {'path': path});
}