Pair<A, B> class
Creates a pair of values.
Constructors
- Pair(A _a, B _b)
- Creates a Pair of two values. Both can have different types
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
Combines
a
andb
into a String, like "a, b".override
Operators
-
operator ==(
Object other) → bool -
Compares a Pair with another Object.
override