tokenOfOwnerByIndex method

Future tokenOfOwnerByIndex(
  1. String contractAddress,
  2. String owner,
  3. int index
)

Implementation

Future<dynamic> tokenOfOwnerByIndex(
  String contractAddress,
  String owner,
  int index,
) async {
  return (await _readFromContract(
    'ERC721',
    contractAddress,
    'tokenOfOwnerByIndex',
    [
      owner,
      index,
    ],
  ))
      .first;
}