nonce method
"stateMutability": "view", Returns the nonce of the Safe contract.
Implementation
@override
Future<BigInt> nonce(EthereumProvider provider) async {
return queryContract<BigInt>(
functionName: SafeContractFunction.nonce,
provider: provider,
);
}