changed method

Future<BigInt?> changed(
  1. String identityDid
)

Implementation

Future<BigInt?> changed(String identityDid) async {
  if (!_matchesExpectedDid(identityDid)) {
    throw Exception(
        'Information about $identityDid do not belong to this network');
  }
  var changedFunction = _erc1056contract.function('changed');
  var changedBlock = await web3Client.call(
      contract: _erc1056contract,
      function: changedFunction,
      params: [_didToAddress(identityDid)]);
  return changedBlock.first as BigInt?;
}