exists method

Future<bool> exists(
  1. int id
)

Indicates weither any token exist with a given id, or not.

Implementation

Future<bool> exists(int id) async {
  return contract.call<bool>('exists', [id]);
}