DevCredentials class

Credentials used to connect to the PowerSync dev API.

Used by DevConnector.

These cannot be used for the main PowerSync APIs. DevConnector uses these credentials to automatically fetch PowerSyncCredentials.

Annotations
  • @Deprecated('We will be removing this in version 2.')

Constructors

DevCredentials({required String endpoint, String? token, String? userId})
DevCredentials.fromJson(Map<String, dynamic> parsed)
factory
DevCredentials.fromString(String credentials)
factory

Properties

endpoint String
Dev endpoint.
getter/setter pair
hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
token String?
Dev token.
getter/setter pair
userId String?
User id.
getter/setter pair

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.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromOptionalString(String? credentials) DevCredentials?