upload function

Future upload(
  1. String fileName,
  2. String filePath,
  3. String objectKey,
  4. String uuid,
)

Implementation

Future<dynamic> upload(
    String fileName, String filePath, String objectKey, String uuid) {
  return AliyunOSSPlatform.instance.upload(fileName, filePath, objectKey, uuid);
}