ExchangeInjectContract constructor
ExchangeInjectContract({
- required TronAddress ownerAddress,
- BigInt? exchangeId,
- List<
int> ? tokenId, - BigInt? quant,
Create a new ExchangeInjectContract instance with specified parameters.
Implementation
ExchangeInjectContract(
{required this.ownerAddress,
this.exchangeId,
List<int>? tokenId,
this.quant})
: tokenId = BytesUtils.tryToBytes(tokenId);