getSequence method

Future<int> getSequence()

Implementation

Future<int> getSequence() async {
  var response = await _lcd.auth.getAccountInfoWalletAddress(accAddress);
  return int.parse(response.sequence!);
}