CoinStruct constructor

CoinStruct(
  1. String coinType,
  2. ObjectId coinObjectId,
  3. int version,
  4. TransactionDigest digest,
  5. String balance,
  6. TransactionDigest previousTransaction,
)

Implementation

CoinStruct(
  this.coinType,
  this.coinObjectId,
  int version,
  TransactionDigest digest,
  this.balance,
  this.previousTransaction,
): super(digest, coinObjectId, version);