v1AssetsQueryPost method

Future<Response<AssetListResponseV2$Response>> v1AssetsQueryPost({
  1. String? condition,
  2. List<String>? unconditionalAssets,
  3. String? walletAddress,
})

@param condition Condition @param unconditional_assets Unconditional assets @param wallet_address Wallet address

Implementation

Future<chopper.Response<AssetListResponseV2$Response>> v1AssetsQueryPost({
  String? condition,
  List<String>? unconditionalAssets,
  String? walletAddress,
}) {
  generatedMapping.putIfAbsent(AssetListResponseV2$Response,
      () => AssetListResponseV2$Response.fromJsonFactory);

  return _v1AssetsQueryPost(
      condition: condition,
      unconditionalAssets: unconditionalAssets,
      walletAddress: walletAddress);
}