upload abstract method

Future<DropboxFile> upload(
  1. String path,
  2. Stream<List<int>> dataStream, {
  3. String mode = 'add',
  4. bool autorename = true,
})

파일을 업로드합니다.

Returns a DropboxFile containing the metadata of the uploaded file.

Implementation

Future<DropboxFile> upload(
  String path,
  Stream<List<int>> dataStream, {
  String mode = 'add',
  bool autorename = true,
});