UpdateDomainRequest class
Constructors
- UpdateDomainRequest.new({String? name, String? proxyUrl, bool? isSecondary})
- Returns a new UpdateDomainRequest instance.
Properties
- hashCode → int
-
The hash code for this object.
no setteroverride
- isSecondary ↔ bool?
-
Whether this is a domain for a secondary app, meaning that any subdomain provided is significant and will be stored as part of the domain. This is useful for supporting multiple apps (one primary and multiple secondaries) on the same root domain (eTLD+1).
getter/setter pair
- name ↔ String?
-
The new domain name. For development instances, can contain the port, i.e
myhostname:3000
. For production instances, must be a valid FQDN, i.emysite.com
. Cannot contain protocol scheme.getter/setter pair - proxyUrl ↔ String?
-
The full URL of the proxy that will forward requests to Clerk's Frontend API. Can only be updated for production instances.
getter/setter pair
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJson(
) → Map< String, dynamic> -
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override
Static Methods
-
fromJson(
dynamic value) → UpdateDomainRequest? -
Returns a new UpdateDomainRequest instance and imports its values from
value
if it's a Map, null otherwise. -
listFromJson(
dynamic json, {bool growable = false}) → List< UpdateDomainRequest> -
mapFromJson(
dynamic json) → Map< String, UpdateDomainRequest> -
mapListFromJson(
dynamic json, {bool growable = false}) → Map< String, List< UpdateDomainRequest> >
Constants
-
requiredKeys
→ const Set<
String> - The list of required keys that must be present in a JSON.