Advertisement
hasancse1991

File upload

Aug 27th, 2021
1,632
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.52 KB | None | 0 0
  1.     FormData.fromMap({
  2.       'meta':[
  3.         {
  4.           'filename': 'upload.txt',
  5.           'fileType': 'text',
  6.           'size': 1456,
  7.           'length': 0
  8.         },
  9.         {
  10.           'filename': 'image.png',
  11.           'fileType': 'image',
  12.           'size': 24567,
  13.           'length': 120
  14.         }
  15.       ],
  16.       'files': [
  17.         MultipartFile.fromFileSync('./example/upload.txt', filename: 'upload.txt'),
  18.         MultipartFile.fromFileSync('./example/image.png', filename: 'image.png'),
  19.       ]
  20.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement