functions property

The Nhost serverless functions service.

https://docs.nhost.io/platform/serverless-functions

Implementation

@override
NhostFunctionsClient get functions => _functions ??= NhostFunctionsClient(
      url: subdomain != null
          ? createNhostServiceEndpoint(
              subdomain: subdomain!.subdomain,
              region: subdomain!.region,
              service: 'functions',
            )
          : serviceUrls!.functionsUrl,
      session: _session,
      httpClient: httpClient,
    );