walletListPost method

Future<Response<WalletListResponse>> walletListPost({
  1. required WalletListRequest? body,
})

Fetch a list of e-wallets

Implementation

Future<chopper.Response<WalletListResponse>> walletListPost(
    {required WalletListRequest? body}) {
  generatedMapping.putIfAbsent(
      WalletListResponse, () => WalletListResponse.fromJsonFactory);

  return _walletListPost(body: body);
}