storage property

The Nhost file storage service.

https://docs.nhost.io/platform/storage

Implementation

@override
NhostStorageClient get storage => _storage ??= NhostStorageClient(
      url: subdomain != null
          ? createNhostServiceEndpoint(
              subdomain: subdomain!.subdomain,
              region: subdomain!.region,
              service: 'storage',
            )
          : serviceUrls!.storageUrl,
      httpClient: httpClient,
      session: _session,
    );