fullExit method

Future<String> fullExit({
  1. required int accountId,
  2. required int subAccountId,
  3. required int tokenId,
  4. required bool mapping,
  5. required EthTxOption ethParams,
  6. dynamic hint,
})

Implementation

Future<String> fullExit(
        {required int accountId,
        required int subAccountId,
        required int tokenId,
        required bool mapping,
        required EthTxOption ethParams,
        dynamic hint}) =>
    RustLib.instance.api.walletFullExit(
        that: this,
        accountId: accountId,
        subAccountId: subAccountId,
        tokenId: tokenId,
        mapping: mapping,
        ethParams: ethParams,
        hint: hint);