Token constructor

Token(
  1. String name,
  2. String symbol,
  3. String domain,
  4. int totalSupply,
  5. int decimals,
  6. Address owner,
  7. TokenStandard tokenStandard,
  8. int maxSupply,
  9. bool isBurnable,
  10. bool isMintable,
  11. bool isUtility,
)

Implementation

Token(
  this.name,
  this.symbol,
  this.domain,
  this.totalSupply,
  this.decimals,
  this.owner,
  this.tokenStandard,
  this.maxSupply,
  this.isBurnable,
  this.isMintable,
  this.isUtility,
);