claim method
Implementation
Future<dynamic> claim(
String receiver,
BigInt tokenId,
BigInt quantity,
String currency,
BigInt pricePerToken,
Map<String, dynamic> allowlistProof,
String data) async {
return await _contract.send("claim", [
receiver,
tokenId,
quantity,
currency,
pricePerToken,
allowlistProof,
data
]);
}