setRoyaltyInfoForToken method

Future setRoyaltyInfoForToken(
  1. BigInt tokenId,
  2. String recipient,
  3. BigInt bps
)

Implementation

Future<dynamic> setRoyaltyInfoForToken(
        BigInt tokenId, String recipient, BigInt bps) async =>
    await _contract.send("setRoyaltyInfoForToken", [tokenId, recipient, bps]);