getAccountAccountId method

String? getAccountAccountId()

Implementation

String? getAccountAccountId() {
  if (_account != null) {
    return KeyPair.fromXdrPublicKey(_account!.accountID.accountID).accountId;
  }
  return null;
}