Subdomain constructor

Subdomain({
  1. required String subdomain,
  2. required String region,
})

subdomain is the Nhost "subdomain" and "region" that can be found on your Nhost project page. for local development pass 'local' to subdomain and leave region empty string '';

Implementation

Subdomain({
  required this.subdomain,
  required this.region,
});