createObjectUrl method
Creates a URL for uploading an object.
This method generates a pre-signed URL for uploading an object to the specified storage location.
Returns:
- A Future that completes with an ObjectUrlResponse containing the generated URL and other metadata.
Implementation
Future<ObjectUrlResponse> createObjectUrl() async =>
await _client.createObjectUrl(
Empty(),
options: await _fetchOptions(),
);