Upload_LocalUpload method

Future<Map> Upload_LocalUpload({
  1. required File file,
  2. String? apiKey,
})

Upload local files using API

Implementation

Future<Map> Upload_LocalUpload({
  required File file,
  String? apiKey,
}) async {
  return await uploadFileFromLocal(
    file: file,
    apiKey: apiKey,
  );
}