uploadAsync method

Future<Response> uploadAsync({
  1. required List<String> paths,
})

Implementation

Future<Response> uploadAsync({required List<String> paths}) {
  final res = compute(upload as ComputeCallback<List<String>, Response>, paths);
  return res;
}