createObjectUrl method

Future<ObjectUrlResponse> createObjectUrl()

Creates a URL for uploading an object.

This method generates a pre-signed URL for uploading an object to the specified storage location.

Returns:

Implementation

Future<ObjectUrlResponse> createObjectUrl() async =>
    await _client.createObjectUrl(
      Empty(),
      options: await _fetchOptions(),
    );