walletCreatePost method

Future<Response<WalletCreateResponse>> walletCreatePost({
  1. required WalletCreateRequest? body,
})

Create an e-wallet

Implementation

Future<chopper.Response<WalletCreateResponse>> walletCreatePost(
    {required WalletCreateRequest? body}) {
  generatedMapping.putIfAbsent(
      WalletCreateResponse, () => WalletCreateResponse.fromJsonFactory);

  return _walletCreatePost(body: body);
}