isFungible method

bool isFungible(
  1. Token token
)

Returns true when the token is fungible (nonce == 0).

Implementation

bool isFungible(Token token) => token.nonce == BigInt.zero;