ChangePubKey constructor
      
      ChangePubKey({})
     
    
    
Implementation
factory ChangePubKey(
        {required int chainId,
        required int accountId,
        required int subAccountId,
        required String newPubkeyHash,
        required int feeToken,
        required String fee,
        required int nonce,
        String? ethSignature,
        int? ts,
        dynamic hint}) =>
    RustLib.instance.api.changePubKeyNew(
        chainId: chainId,
        accountId: accountId,
        subAccountId: subAccountId,
        newPubkeyHash: newPubkeyHash,
        feeToken: feeToken,
        fee: fee,
        nonce: nonce,
        ethSignature: ethSignature,
        ts: ts,
        hint: hint);