CryptoCoins<T extends CoinConfig> 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.

Implementers

Constructors

CryptoCoins()

Properties

coinName String
no setter
conf → T
no setter
hashCode int
The hash code for this object.
no setterinherited
isBipCoin bool
no setter
proposal CoinProposal
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value CryptoCoins<CoinConfig>
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, CoinProposal proposal) CryptoCoins<CoinConfig>?