run_small_dropbox 3.0.2
run_small_dropbox: ^3.0.2 copied to clipboard
Access to the dropbox API in a simple and fast way, shortening several steps of the complex implementation of the official dropbox api. Supported for all platforms.
example/lib/example.dart
import 'package:run_small_dropbox/run_small_dropbox.dart';
// import 'package:universal_io/io.dart';
void main() async {
const accessToken = 'YOU_ACCESS_TOKEN';
final dropboxApp = Dropbox.initializeApp(accessToken);
final dropboxFile = DropboxFile(dropboxApp);
var data = await dropboxFile.getTemporaryLink('Documents/orders.json');
print(data);
}