airdrop method

Future airdrop(
  1. String tokenAddress,
  2. String tokenOwner,
  3. List<String> recipients,
  4. List<BigInt> tokenIds,
)

Implementation

Future<dynamic> airdrop(String tokenAddress, String tokenOwner,
        List<String> recipients, List<BigInt> tokenIds) async =>
    await _contract
        .send("airdrop", [tokenAddress, tokenOwner, recipients, tokenIds]);