AssetTypeCreditAlphaNum constructor

AssetTypeCreditAlphaNum(
  1. String code,
  2. String issuerId
)

Implementation

AssetTypeCreditAlphaNum(String code, this.issuerId) {
  checkNotNull(code, "code cannot be null");
  checkNotNull(issuerId, "issuer id cannot be null");
  mCode = code;
}