v1AssetsSearchPost method

Future<Response<AssetListResponseV2$Response>> v1AssetsSearchPost({
  1. required String? searchString,
  2. String? condition,
  3. String? walletAddress,
})

@param search_string Search string (by partial display name or symbol) or by full contract address @param condition Condition @param wallet_address Wallet address

Implementation

Future<chopper.Response<AssetListResponseV2$Response>> v1AssetsSearchPost({
  required String? searchString,
  String? condition,
  String? walletAddress,
}) {
  generatedMapping.putIfAbsent(AssetListResponseV2$Response,
      () => AssetListResponseV2$Response.fromJsonFactory);

  return _v1AssetsSearchPost(
      searchString: searchString,
      condition: condition,
      walletAddress: walletAddress);
}