walletGetPost method

Future<Response<WalletGetResponse>> walletGetPost({
  1. required WalletGetRequest? body,
})

Fetch an e-wallet

Implementation

Future<chopper.Response<WalletGetResponse>> walletGetPost(
    {required WalletGetRequest? body}) {
  generatedMapping.putIfAbsent(
      WalletGetResponse, () => WalletGetResponse.fromJsonFactory);

  return _walletGetPost(body: body);
}