getNonce method

Future<BigInt> getNonce()

Implementation

Future<BigInt> getNonce() async {
  print(this.scwAddress);
  var result = await entryPointContract.getNonce(address: this.scwAddress);
  return result;
}