Creates a token that can be used in a DI Provider.

Example (live demo)

var t = new OpaqueToken("value");

var injector = Injector.resolveAndCreate( provide(t, {useValue: "bindingValue"}) );

expect(injector.get(t)).toEqual("bindingValue");

Using an OpaqueToken is preferable to using strings as tokens because of possible collisions caused by multiple providers using the same string as two different tokens.

Using an OpaqueToken is preferable to using an Object as tokens because it provides better error messages.

Constructors

OpaqueToken(String _desc)

const

Properties

hashCode → int

Get a hash code for this object.

read-only, inherited
runtimeType → Type

A representation of the runtime type of the object.

read-only, inherited

Operators

operator ==(other) → bool

The equality operator.

inherited

Methods

noSuchMethod(Invocation invocation) → dynamic

Invoked when a non-existent method or property is accessed.

inherited
toString() → String

Returns a string representation of this object.