chunkedUploadFile abstract method

Future<bool> chunkedUploadFile(
  1. Uri url,
  2. String serverType,
  3. String uploadPath,
  4. String uploadName,
  5. String fileType,
  6. Uint8List fileBytes, {
  7. void progressCallback(
    1. int loaded,
    2. int total
    )?,
})

Implementation

Future<bool> chunkedUploadFile(
  Uri url,
  String serverType,
  String uploadPath,
  String uploadName,
  String fileType,
  Uint8List fileBytes, {
  void Function(int loaded, int total)? progressCallback,
});