upload method
Implementation
Future<void> upload(String path, Uint8List bytes, {bool overwrite = false, String? name, String? mimeType}) async {
await uploadStream(path, Stream.value(bytes), overwrite: overwrite, size: bytes.length, name: name, mimeType: mimeType);
}