getRewardsPerUnitTime method

Future getRewardsPerUnitTime(
  1. int tokenId
)

Implementation

Future<dynamic> getRewardsPerUnitTime(int tokenId) async {
  return contract.call("getRewardsPerUnitTime", [BigInt.from(tokenId)]);
}