CryptoCoins class abstract
An abstract class representing a collection of cryptocurrency coins.
This abstract class defines a contract for classes that provide a collection of cryptocurrency coins. Subclasses should implement the 'value' getter to return an instance of themselves or a specific type that represents the collection of coins.
Constructors
Properties
- coinName → String
-
no setter
- conf → CoinConfig
-
no setter
- hashCode → int
-
The hash code for this object.
no setterinherited
- proposal → CryptoProposal
-
no setter
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → CryptoCoins
-
Gets the collection of cryptocurrency coins.
no setter
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
getCoin(
String name, CryptoProposal proposal) → CryptoCoins?