ServiceUrls constructor

ServiceUrls({
  1. required String authUrl,
  2. required String graphqlUrl,
  3. required String storageUrl,
  4. required String functionsUrl,
})

region is the Nhost services Urls that can be found on your Nhost self-hosted project page.

Implementation

ServiceUrls({
  required this.authUrl,
  required this.graphqlUrl,
  required this.storageUrl,
  required this.functionsUrl,
});